:root {
  --tp-ink: #142124;
  --tp-ink-soft: #566468;
  --tp-dark: #10292b;
  --tp-dark-2: #193638;
  --tp-accent: #1aa58f;
  --tp-accent-dark: #117968;
  --tp-accent-soft: #dff4ef;
  --tp-line: #dce5e3;
  --tp-line-dark: rgba(255, 255, 255, .18);
  --tp-surface: #ffffff;
  --tp-soft: #f2f6f5;
  --tp-warm: #f6f2ea;
  --tp-danger: #ad3e3e;
  --tp-radius: 12px;
  --tp-radius-sm: 7px;
  --tp-shell: 1220px;
}

.tp-page {
  color: var(--tp-ink);
  overflow: clip;
}

.tp-shell {
  width: min(calc(100% - 40px), var(--tp-shell));
  margin-inline: auto;
}

.tp-section {
  padding-block: 88px;
}

.tp-section--soft {
  background: var(--tp-soft);
}

.tp-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.tp-kicker,
.tp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--tp-accent-dark);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.tp-eyebrow span {
  width: 28px;
  height: 1px;
  background: currentColor;
}

.tp-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .55fr);
  align-items: end;
  gap: 56px;
  margin-bottom: 36px;
}

.tp-section-head h2 {
  max-width: 760px;
  margin: 10px 0 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.045em;
  font-weight: 580;
}

.tp-section-head > p {
  margin: 0;
  color: var(--tp-ink-soft);
  line-height: 1.7;
}

.tp-btn {
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--tp-radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 620;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.tp-btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.tp-btn--primary {
  color: #fff;
  background: var(--tp-accent);
  border-color: var(--tp-accent);
}

.tp-btn--primary:hover {
  color: #fff;
  background: var(--tp-accent-dark);
  border-color: var(--tp-accent-dark);
}

.tp-btn--ghost {
  color: var(--tp-ink);
  background: transparent;
  border-color: var(--tp-line);
}

.tp-btn--ghost:hover {
  color: var(--tp-accent-dark);
  border-color: var(--tp-accent);
}

.tp-btn--light {
  color: var(--tp-dark);
  background: #fff;
  border-color: #fff;
}

.tp-btn--outline-light {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, .45);
}

.tp-btn--outline-light:hover {
  color: #fff;
  border-color: #fff;
}

.tp-btn--full {
  width: 100%;
}

.tp-btn.is-loading {
  opacity: .72;
  cursor: progress;
}

.tp-text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--tp-accent-dark);
  font-weight: 620;
  text-decoration: none;
}

.tp-text-link .tp-icon {
  width: 19px;
  height: 19px;
  transition: transform .2s ease;
}

.tp-text-link:hover .tp-icon {
  transform: translateX(4px);
}

.tp-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  color: #7b878a;
  font-size: 13px;
}

.tp-breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.tp-breadcrumbs a:hover {
  color: var(--tp-accent-dark);
}

/* Home hero */
.tp-hero {
  min-height: 680px;
  padding-block: 70px 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(430px, .75fr);
  align-items: center;
  gap: 64px;
}

.tp-hero__content h1 {
  max-width: 800px;
  margin: 20px 0 22px;
  font-size: clamp(43px, 6vw, 76px);
  line-height: 1.01;
  letter-spacing: -.058em;
  font-weight: 570;
}

.tp-hero__lead {
  max-width: 700px;
  margin: 0 0 28px;
  color: var(--tp-ink-soft);
  font-size: 18px;
  line-height: 1.68;
}

.tp-search {
  max-width: 690px;
  min-height: 62px;
  padding: 6px;
  display: grid;
  grid-template-columns: 1fr auto;
  border: 1px solid var(--tp-line);
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(27, 57, 57, .08);
}

.tp-search input {
  min-width: 0;
  padding: 0 18px;
  border: 0;
  outline: 0;
  color: var(--tp-ink);
  background: transparent;
  font: inherit;
  font-size: 16px;
}

.tp-search button {
  padding: 0 19px;
  border: 0;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  background: var(--tp-dark);
  font: inherit;
  font-weight: 620;
  cursor: pointer;
}

.tp-search button .tp-icon {
  width: 19px;
  height: 19px;
}

.tp-hero__actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tp-hero__stats {
  margin-top: 46px;
  display: flex;
  gap: 0;
}

.tp-hero__stats > div {
  min-width: 145px;
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid var(--tp-line);
  display: grid;
  gap: 4px;
}

.tp-hero__stats > div:last-child {
  border-right: 0;
}

.tp-hero__stats strong {
  font-size: 24px;
  font-weight: 610;
  letter-spacing: -.03em;
}

.tp-hero__stats span {
  color: var(--tp-ink-soft);
  font-size: 13px;
}

.tp-hero__visual {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--tp-line);
  background:
    linear-gradient(var(--tp-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--tp-line) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(26, 165, 143, .17), transparent 48%);
  background-size: 58px 58px, 58px 58px, auto;
}

.tp-grid-visual {
  position: absolute;
  inset: 0;
}

.tp-grid-visual__item,
.tp-grid-visual__core {
  position: absolute;
  border: 1px solid var(--tp-line);
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(8px);
}

.tp-grid-visual__item {
  width: 162px;
  min-height: 118px;
  padding: 20px;
  display: grid;
  align-content: space-between;
  gap: 14px;
  color: var(--tp-ink);
}

.tp-grid-visual__item .tp-icon {
  color: var(--tp-accent-dark);
}

.tp-grid-visual__item span {
  font-size: 13px;
  line-height: 1.35;
}

.tp-grid-visual__item--1 { left: 4%; top: 8%; }
.tp-grid-visual__item--2 { right: 3%; top: 13%; }
.tp-grid-visual__item--3 { left: 13%; bottom: 9%; }
.tp-grid-visual__item--4 { right: 9%; bottom: 7%; }
.tp-grid-visual__item--5 { left: 2%; top: 42%; }
.tp-grid-visual__item--6 { right: 1%; top: 47%; }

.tp-grid-visual__core {
  width: 146px;
  height: 146px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-content: center;
  text-align: center;
  color: #fff;
  background: var(--tp-dark);
  border-color: var(--tp-dark);
  box-shadow: 0 22px 50px rgba(16, 41, 43, .23);
}

.tp-grid-visual__core span {
  font-size: 38px;
  font-weight: 570;
  letter-spacing: -.06em;
}

.tp-grid-visual__core small {
  margin-top: 4px;
  color: rgba(255,255,255,.67);
}

/* Category cards */
.tp-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--tp-line);
  border-left: 1px solid var(--tp-line);
}

.tp-category-card {
  min-height: 236px;
  padding: 30px;
  border-right: 1px solid var(--tp-line);
  border-bottom: 1px solid var(--tp-line);
  display: grid;
  grid-template-columns: 58px 1fr;
  grid-template-rows: 1fr auto;
  gap: 0 22px;
  color: var(--tp-ink);
  background: #fff;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}

.tp-category-card:hover {
  color: #fff;
  background: var(--tp-dark);
  text-decoration: none;
}

.tp-category-card__icon {
  width: 58px;
  height: 58px;
  border: 1px solid var(--tp-line);
  display: grid;
  place-items: center;
  color: var(--tp-accent-dark);
  background: var(--tp-soft);
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.tp-category-card:hover .tp-category-card__icon {
  color: #fff;
  border-color: var(--tp-line-dark);
  background: rgba(255,255,255,.08);
}

.tp-category-card h3 {
  margin: 0 0 10px;
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -.025em;
  font-weight: 590;
}

.tp-category-card p {
  margin: 0;
  color: var(--tp-ink-soft);
  line-height: 1.58;
  transition: color .2s ease;
}

.tp-category-card:hover p {
  color: rgba(255,255,255,.67);
}

.tp-category-card footer {
  grid-column: 2;
  padding-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--tp-ink-soft);
  font-size: 13px;
  transition: color .2s ease;
}

.tp-category-card:hover footer {
  color: rgba(255,255,255,.76);
}

.tp-category-card footer .tp-icon {
  width: 20px;
  height: 20px;
}

/* Service cards */
.tp-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.tp-service-card {
  min-height: 312px;
  padding: 24px;
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-radius);
  display: flex;
  flex-direction: column;
  color: var(--tp-ink);
  background: #fff;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.tp-service-card:hover {
  border-color: rgba(26, 165, 143, .55);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(27, 57, 57, .07);
}

.tp-service-card--compact {
  min-height: 220px;
}

.tp-service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.tp-service-card__icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--tp-line);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--tp-accent-dark);
  background: var(--tp-soft);
}

.tp-service-card__icon .tp-icon {
  width: 22px;
  height: 22px;
}

.tp-service-card__category {
  color: var(--tp-ink-soft);
  font-size: 12px;
  text-align: right;
}

.tp-service-card h3 {
  margin: 28px 0 12px;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -.025em;
  font-weight: 590;
}

.tp-service-card h3 a {
  color: inherit;
  text-decoration: none;
}

.tp-service-card p {
  margin: 0;
  color: var(--tp-ink-soft);
  font-size: 14px;
  line-height: 1.62;
}

.tp-service-card__bottom {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--tp-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--tp-ink-soft);
  font-size: 13px;
}

.tp-service-card__bottom a {
  width: 37px;
  height: 37px;
  border: 1px solid var(--tp-line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--tp-ink);
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.tp-service-card__bottom a:hover {
  color: #fff;
  background: var(--tp-accent);
  border-color: var(--tp-accent);
}

.tp-service-card__bottom .tp-icon {
  width: 17px;
  height: 17px;
}

/* Process and audience */
.tp-process {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.tp-process__intro {
  position: sticky;
  top: 100px;
}

.tp-process__intro h2 {
  margin: 12px 0 20px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.045em;
  font-weight: 580;
}

.tp-process__intro p {
  color: var(--tp-ink-soft);
  line-height: 1.7;
}

.tp-process__steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--tp-line);
}

.tp-process__steps li {
  padding: 28px 0;
  border-bottom: 1px solid var(--tp-line);
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
}

.tp-process__steps > li > span {
  color: var(--tp-accent-dark);
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}

.tp-process__steps b {
  font-size: 20px;
  font-weight: 590;
}

.tp-process__steps p {
  margin: 7px 0 0;
  color: var(--tp-ink-soft);
}

.tp-audience {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--tp-line);
}

.tp-audience article {
  min-height: 280px;
  padding: 30px;
  border-right: 1px solid var(--tp-line);
  display: flex;
  flex-direction: column;
}

.tp-audience article:last-child {
  border-right: 0;
}

.tp-audience article > span {
  color: var(--tp-accent-dark);
  font-size: 13px;
}

.tp-audience h3 {
  margin: auto 0 14px;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: -.03em;
  font-weight: 580;
}

.tp-audience p {
  margin: 0;
  color: var(--tp-ink-soft);
  line-height: 1.62;
}

.tp-final-cta {
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
  color: #fff;
  background: var(--tp-dark);
}

.tp-final-cta h2 {
  margin: 10px 0 12px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -.04em;
  font-weight: 570;
}

.tp-final-cta p {
  max-width: 720px;
  margin: 0;
  color: rgba(255,255,255,.68);
}

.tp-final-cta .tp-kicker {
  color: #81d9ca;
}

.tp-final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tp-final-cta--small {
  padding: 36px 40px;
}

.tp-final-cta--small h2 {
  font-size: 32px;
}

/* Catalog */
.tp-catalog-hero,
.tp-category-hero,
.tp-page-hero,
.tp-provider-hero {
  padding: 54px 0 62px;
  color: #fff;
  background: var(--tp-dark);
}

.tp-catalog-hero .tp-breadcrumbs,
.tp-category-hero .tp-breadcrumbs,
.tp-provider-hero .tp-breadcrumbs {
  color: rgba(255,255,255,.58);
}

.tp-catalog-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  align-items: end;
  gap: 60px;
}

.tp-catalog-hero h1,
.tp-category-hero h1,
.tp-page-hero h1,
.tp-provider-hero h1 {
  max-width: 900px;
  margin: 12px 0 18px;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.03;
  letter-spacing: -.052em;
  font-weight: 560;
}

.tp-catalog-hero p,
.tp-category-hero p,
.tp-page-hero p,
.tp-provider-hero p {
  max-width: 780px;
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 17px;
  line-height: 1.65;
}

.tp-catalog-hero .tp-kicker,
.tp-category-hero .tp-kicker,
.tp-page-hero .tp-kicker,
.tp-provider-hero .tp-kicker {
  color: #79d3c4;
}

.tp-catalog-hero__count {
  padding-left: 26px;
  border-left: 1px solid var(--tp-line-dark);
  display: grid;
  gap: 6px;
}

.tp-catalog-hero__count strong {
  font-size: 54px;
  line-height: 1;
  font-weight: 560;
}

.tp-catalog-hero__count span {
  color: rgba(255,255,255,.62);
  font-size: 13px;
}

.tp-catalog-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.tp-catalog-sidebar {
  position: sticky;
  top: 92px;
}

.tp-filter {
  padding: 22px;
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-radius);
  background: #fff;
}

.tp-filter > label > span,
.tp-filter legend {
  display: block;
  margin-bottom: 10px;
  color: var(--tp-ink-soft);
  font-size: 12px;
  font-weight: 620;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tp-filter__search {
  height: 44px;
  border: 1px solid var(--tp-line);
  border-radius: 6px;
  display: grid;
  grid-template-columns: 1fr 42px;
  overflow: hidden;
}

.tp-filter__search input {
  min-width: 0;
  padding: 0 11px;
  border: 0;
  outline: 0;
  font: inherit;
  font-size: 13px;
}

.tp-filter__search button {
  border: 0;
  color: #fff;
  background: var(--tp-dark);
  cursor: pointer;
}

.tp-filter__search .tp-icon {
  width: 18px;
  height: 18px;
}

.tp-filter fieldset {
  margin: 24px 0 0;
  padding: 24px 0 0;
  border: 0;
  border-top: 1px solid var(--tp-line);
}

.tp-radio {
  position: relative;
  display: block;
  cursor: pointer;
}

.tp-radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tp-radio span {
  min-height: 40px;
  padding: 8px 9px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--tp-ink-soft);
  font-size: 13px;
  transition: color .2s ease, background .2s ease;
}

.tp-radio span small {
  min-width: 28px;
  text-align: right;
  color: #8b989a;
}

.tp-radio input:checked + span,
.tp-radio:hover span {
  color: var(--tp-ink);
  background: var(--tp-soft);
}

.tp-filter__reset {
  margin-top: 20px;
  display: inline-block;
  color: var(--tp-accent-dark);
  font-size: 13px;
}

.tp-catalog-toolbar {
  min-height: 48px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--tp-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.tp-catalog-toolbar > div {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.tp-catalog-toolbar span {
  color: var(--tp-ink-soft);
}

.tp-mobile-filter-button {
  display: none;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--tp-line);
  border-radius: 6px;
  background: #fff;
}

.tp-empty {
  min-height: 430px;
  padding: 50px;
  border: 1px dashed var(--tp-line);
  display: grid;
  place-content: center;
  justify-items: center;
  text-align: center;
}

.tp-empty > span {
  width: 70px;
  height: 70px;
  margin-bottom: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--tp-accent-dark);
  background: var(--tp-accent-soft);
}

.tp-empty h2 {
  margin: 0 0 10px;
  font-weight: 590;
}

.tp-empty p {
  margin: 0 0 24px;
  color: var(--tp-ink-soft);
}

/* Category */
.tp-category-hero__grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 70px;
  align-items: end;
}

.tp-category-hero__main {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 28px;
  align-items: start;
}

.tp-category-hero__icon {
  width: 82px;
  height: 82px;
  border: 1px solid var(--tp-line-dark);
  display: grid;
  place-items: center;
  color: #7bd4c5;
  background: rgba(255,255,255,.05);
}

.tp-category-hero__icon .tp-icon {
  width: 35px;
  height: 35px;
}

.tp-category-hero__aside {
  padding: 26px;
  border: 1px solid var(--tp-line-dark);
  background: rgba(255,255,255,.04);
}

.tp-category-hero__aside > b {
  display: block;
  font-size: 18px;
  font-weight: 580;
}

.tp-category-hero__aside ul {
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.tp-category-hero__aside li {
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.68);
  font-size: 13px;
}

.tp-category-hero__aside a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #82ddcd;
  text-decoration: none;
}

.tp-category-hero__aside .tp-icon {
  width: 18px;
  height: 18px;
}

.tp-category-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.tp-category-info h2 {
  margin: 10px 0 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -.04em;
  font-weight: 580;
}

.tp-category-info p {
  color: var(--tp-ink-soft);
  line-height: 1.7;
}

.tp-check-list {
  border-top: 1px solid var(--tp-line);
}

.tp-check-list span {
  min-height: 60px;
  border-bottom: 1px solid var(--tp-line);
  display: flex;
  align-items: center;
  gap: 14px;
}

.tp-check-list .tp-icon {
  width: 20px;
  height: 20px;
  color: var(--tp-accent-dark);
}

/* Forms */
.tp-form-panel {
  padding: 46px;
  border: 1px solid var(--tp-line);
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 70px;
  align-items: start;
  background: var(--tp-soft);
}

.tp-form-panel__intro h2 {
  margin: 12px 0 18px;
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -.04em;
  font-weight: 580;
}

.tp-form-panel__intro p {
  color: var(--tp-ink-soft);
  line-height: 1.7;
}

.tp-lead-form {
  display: grid;
  gap: 16px;
}

.tp-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tp-lead-form label {
  display: grid;
  gap: 7px;
}

.tp-lead-form label > span {
  color: var(--tp-ink-soft);
  font-size: 12px;
  font-weight: 600;
}

.tp-lead-form input,
.tp-lead-form textarea {
  width: 100%;
  border: 1px solid var(--tp-line);
  border-radius: 6px;
  outline: 0;
  color: var(--tp-ink);
  background: #fff;
  font: inherit;
  font-size: 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.tp-lead-form input {
  height: 48px;
  padding: 0 13px;
}

.tp-lead-form textarea {
  min-height: 110px;
  padding: 12px 13px;
  resize: vertical;
}

.tp-lead-form input:focus,
.tp-lead-form textarea:focus {
  border-color: var(--tp-accent);
  box-shadow: 0 0 0 3px rgba(26, 165, 143, .10);
}

.tp-form-consent {
  margin: -4px 0 0;
  color: #7a888a;
  font-size: 11px;
  line-height: 1.5;
}

.tp-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Service hero */
.tp-service-hero {
  padding: 46px 0 62px;
  background: linear-gradient(180deg, #f4f8f7 0%, #fff 100%);
  border-bottom: 1px solid var(--tp-line);
}

.tp-service-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 64px;
  align-items: start;
}

.tp-service-hero__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  color: var(--tp-ink-soft);
  font-size: 13px;
}

.tp-service-hero__meta a {
  color: var(--tp-accent-dark);
  text-decoration: none;
}

.tp-service-hero__icon {
  width: 42px;
  height: 42px;
  margin-right: 4px;
  border: 1px solid var(--tp-line);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--tp-accent-dark);
  background: #fff;
}

.tp-service-hero__icon .tp-icon {
  width: 21px;
  height: 21px;
}

.tp-service-hero h1 {
  max-width: 830px;
  margin: 24px 0 22px;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.03;
  letter-spacing: -.052em;
  font-weight: 570;
}

.tp-service-hero__main > p {
  max-width: 760px;
  margin: 0;
  color: var(--tp-ink-soft);
  font-size: 17px;
  line-height: 1.7;
}

.tp-service-hero__facts {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tp-service-hero__facts span {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--tp-line);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--tp-ink-soft);
  background: #fff;
  font-size: 12px;
}

.tp-service-hero__facts .tp-icon {
  width: 16px;
  height: 16px;
  color: var(--tp-accent-dark);
}

.tp-service-hero__actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tp-service-hero__form {
  padding: 25px;
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-radius);
  background: #fff;
  box-shadow: 0 18px 48px rgba(27, 57, 57, .08);
}

.tp-side-form__head {
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--tp-line);
  display: grid;
  gap: 4px;
}

.tp-side-form__head span {
  color: var(--accent-dark);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.tp-side-form__head b {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 580;
}

.tp-lead-form--compact .tp-form-row {
  grid-template-columns: 1fr;
}

/* Service content */
.tp-service-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 70px;
  align-items: start;
}

.tp-service-content > main {
  min-width: 0;
}

.tp-content-block {
  padding: 56px 0;
  border-bottom: 1px solid var(--tp-line);
}

.tp-content-block:first-child {
  padding-top: 0;
}

.tp-content-block__head {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  margin-bottom: 30px;
}

.tp-content-block__head > span {
  padding-top: 8px;
  color: var(--tp-accent-dark);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.tp-content-block__head h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3.5vw, 43px);
  line-height: 1.1;
  letter-spacing: -.04em;
  font-weight: 580;
}

.tp-content-block__head p {
  max-width: 760px;
  margin: 0;
  color: var(--tp-ink-soft);
  line-height: 1.68;
}

.tp-content-block__head--small {
  margin-bottom: 22px;
}

.tp-content-block__head--small h2 {
  font-size: 29px;
}

.tp-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--tp-line);
  border-left: 1px solid var(--tp-line);
}

.tp-feature-list > div {
  min-height: 82px;
  padding: 18px;
  border-right: 1px solid var(--tp-line);
  border-bottom: 1px solid var(--tp-line);
  display: flex;
  align-items: center;
  gap: 14px;
}

.tp-feature-list .tp-icon {
  width: 20px;
  height: 20px;
  color: var(--tp-accent-dark);
}

.tp-object-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.tp-object-grid article {
  min-height: 160px;
  padding: 24px;
  border: 1px solid var(--tp-line);
  border-radius: 9px;
}

.tp-object-grid article > span {
  width: 28px;
  height: 2px;
  display: block;
  background: var(--tp-accent);
}

.tp-object-grid h3 {
  margin: 28px 0 9px;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 590;
}

.tp-object-grid p {
  margin: 0;
  color: var(--tp-ink-soft);
  font-size: 13px;
}

.tp-timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--tp-line);
}

.tp-timeline li {
  min-height: 90px;
  padding: 22px 0;
  border-bottom: 1px solid var(--tp-line);
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
}

.tp-timeline li > span {
  color: var(--tp-accent-dark);
  font-size: 13px;
}

.tp-timeline b {
  font-size: 18px;
  font-weight: 580;
}

.tp-timeline p {
  margin: 7px 0 0;
  color: var(--tp-ink-soft);
  font-size: 14px;
}

.tp-content-block--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.tp-clean-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.tp-clean-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  line-height: 1.55;
}

.tp-clean-list .tp-icon {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--tp-accent-dark);
}

.tp-note {
  margin-top: 22px;
  padding: 17px 18px;
  border-left: 3px solid var(--tp-accent);
  color: var(--tp-ink-soft);
  background: var(--tp-soft);
  font-size: 13px;
  line-height: 1.6;
}

.tp-note--wide {
  margin-top: 30px;
}

.tp-emphasis-text {
  margin: 0 0 20px;
  color: var(--tp-ink-soft);
  font-size: 17px;
  line-height: 1.72;
}

.tp-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.tp-price-grid article {
  min-height: 90px;
  padding: 20px;
  border: 1px solid var(--tp-line);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;
}

.tp-price-grid article > span {
  color: var(--tp-accent-dark);
  font-size: 12px;
}

.tp-price-grid p {
  margin: 0;
  line-height: 1.5;
}

.tp-price-callout {
  margin-top: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #fff;
  background: var(--tp-dark);
}

.tp-price-callout > div {
  display: grid;
  gap: 4px;
}

.tp-price-callout span {
  color: rgba(255,255,255,.62);
  font-size: 12px;
}

.tp-price-callout b {
  font-size: 22px;
  font-weight: 570;
}

.tp-provider-card {
  padding: 26px;
  border: 1px solid var(--tp-line);
  border-radius: var(--tp-radius);
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.tp-provider-card__logo,
.tp-provider-hero__logo {
  border: 1px solid var(--tp-line);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--tp-accent-dark);
  background: var(--tp-soft);
}

.tp-provider-card__logo {
  width: 76px;
  height: 76px;
  border-radius: 10px;
}

.tp-provider-card__logo img,
.tp-provider-hero__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tp-provider-card__logo span {
  font-size: 24px;
  font-weight: 580;
}

.tp-provider-card__label {
  color: var(--tp-accent-dark);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tp-provider-card h3 {
  margin: 6px 0 8px;
  font-size: 24px;
  font-weight: 590;
}

.tp-provider-card p {
  margin: 0;
  color: var(--tp-ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.tp-provider-card__meta {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--tp-ink-soft);
  font-size: 12px;
}

.tp-provider-card__actions {
  display: grid;
  gap: 8px;
}

.tp-faq-list {
  border-top: 1px solid var(--tp-line);
}

.tp-faq-list details {
  border-bottom: 1px solid var(--tp-line);
}

.tp-faq-list summary {
  min-height: 72px;
  padding: 19px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  list-style: none;
  font-size: 17px;
  font-weight: 580;
  cursor: pointer;
}

.tp-faq-list summary::-webkit-details-marker {
  display: none;
}

.tp-faq-list summary span {
  width: 30px;
  height: 30px;
  border: 1px solid var(--tp-line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--tp-accent-dark);
  font-size: 19px;
  font-weight: 400;
  transition: transform .2s ease;
}

.tp-faq-list details[open] summary span {
  transform: rotate(45deg);
}

.tp-faq-list details > p {
  max-width: 760px;
  margin: -3px 0 24px;
  color: var(--tp-ink-soft);
  line-height: 1.68;
}

.tp-service-toc {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 14px;
}

.tp-service-toc__box,
.tp-service-toc__contact {
  padding: 20px;
  border: 1px solid var(--tp-line);
  border-radius: 9px;
  display: grid;
  background: #fff;
}

.tp-service-toc__box > span,
.tp-service-toc__contact > span {
  margin-bottom: 10px;
  color: var(--tp-ink-soft);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tp-service-toc__box a {
  padding: 10px 0;
  border-bottom: 1px solid var(--tp-line);
  color: var(--tp-ink);
  font-size: 13px;
  text-decoration: none;
}

.tp-service-toc__box a:last-child {
  border-bottom: 0;
}

.tp-service-toc__box a:hover {
  color: var(--tp-accent-dark);
}

.tp-service-toc__contact a {
  min-height: 48px;
  border-top: 1px solid var(--tp-line);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--tp-ink);
  text-decoration: none;
}

.tp-service-toc__contact .tp-icon {
  width: 19px;
  height: 19px;
  color: var(--tp-accent-dark);
}

.tp-form-panel__contact {
  margin-top: 30px;
  display: grid;
  gap: 4px;
}

.tp-form-panel__contact span {
  color: var(--tp-ink-soft);
  font-size: 12px;
}

.tp-form-panel__contact a {
  color: var(--tp-ink);
  font-size: 25px;
  font-weight: 570;
  text-decoration: none;
}

.tp-mobile-bar {
  display: none;
}

/* Content pages */
.tp-page-hero {
  padding-bottom: 70px;
}

.tp-page-hero .tp-breadcrumbs {
  color: rgba(255,255,255,.58);
}

.tp-page-content {
  max-width: 1000px;
}

.tp-rich-section {
  margin-bottom: 70px;
}

.tp-rich-section:last-child {
  margin-bottom: 0;
}

.tp-rich-section > h2 {
  margin: 0 0 24px;
  font-size: clamp(29px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -.04em;
  font-weight: 580;
}

.tp-rich-section > p,
.tp-legal p {
  color: var(--tp-ink-soft);
  line-height: 1.75;
}

.tp-info-grid,
.tp-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--tp-line);
  border-left: 1px solid var(--tp-line);
}

.tp-info-grid article,
.tp-contact-grid article {
  min-height: 210px;
  padding: 26px;
  border-right: 1px solid var(--tp-line);
  border-bottom: 1px solid var(--tp-line);
}

.tp-info-grid h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 590;
}

.tp-info-grid p {
  margin: 0;
  color: var(--tp-ink-soft);
  line-height: 1.62;
}

.tp-number-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--tp-line);
}

.tp-number-list li {
  padding: 22px 0;
  border-bottom: 1px solid var(--tp-line);
  display: grid;
  gap: 6px;
}

.tp-number-list b {
  font-size: 18px;
  font-weight: 590;
}

.tp-number-list span {
  color: var(--tp-ink-soft);
}

.tp-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--tp-line);
  border-left: 1px solid var(--tp-line);
}

.tp-check-grid > div {
  min-height: 70px;
  padding: 18px;
  border-right: 1px solid var(--tp-line);
  border-bottom: 1px solid var(--tp-line);
  display: flex;
  align-items: center;
}

.tp-cta-inline {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--tp-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: var(--tp-soft);
}

.tp-cta-inline > div {
  display: grid;
  gap: 4px;
}

.tp-cta-inline span {
  color: var(--tp-ink-soft);
  font-size: 13px;
}

.tp-cta-inline a {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  color: #fff;
  background: var(--tp-accent);
  text-decoration: none;
  white-space: nowrap;
}

.tp-contact-grid article {
  min-height: 180px;
  display: flex;
  flex-direction: column;
}

.tp-contact-grid article > span {
  color: var(--tp-ink-soft);
  font-size: 12px;
}

.tp-contact-grid article > a {
  margin: 20px 0 10px;
  color: var(--tp-ink);
  font-size: 21px;
  font-weight: 570;
  text-decoration: none;
}

.tp-contact-grid p {
  margin: auto 0 0;
  color: var(--tp-ink-soft);
  font-size: 13px;
}

.tp-legal {
  max-width: 820px;
}

.tp-legal h2 {
  margin: 38px 0 12px;
  font-size: 24px;
  font-weight: 590;
}

.tp-success-box {
  padding: 50px;
  border: 1px solid var(--tp-line);
  text-align: center;
  background: var(--tp-soft);
}

.tp-success-box > b {
  display: block;
  font-size: 34px;
  font-weight: 580;
}

.tp-success-box p {
  color: var(--tp-ink-soft);
}

/* Provider */
.tp-provider-hero__grid {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
}

.tp-provider-hero__logo {
  width: 120px;
  height: 120px;
  border-color: var(--tp-line-dark);
  color: #83daca;
  background: rgba(255,255,255,.05);
}

.tp-provider-hero__logo span {
  font-size: 34px;
  font-weight: 570;
}

.tp-provider-hero h1 {
  margin-top: 8px;
  font-size: clamp(38px, 5vw, 58px);
}

.tp-provider-hero__meta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  color: rgba(255,255,255,.62);
  font-size: 13px;
}

.tp-provider-hero__actions {
  display: grid;
  gap: 9px;
}

.tp-provider-hero__actions .tp-btn--ghost {
  color: #fff;
  border-color: var(--tp-line-dark);
}

.tp-provider-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--tp-line);
  border-left: 1px solid var(--tp-line);
}

.tp-provider-details article {
  min-height: 270px;
  padding: 28px;
  border-right: 1px solid var(--tp-line);
  border-bottom: 1px solid var(--tp-line);
}

.tp-provider-details h2 {
  margin: 0 0 22px;
  font-size: 23px;
  font-weight: 590;
}

.tp-provider-details dl {
  margin: 0;
}

.tp-provider-details dl > div {
  padding: 10px 0;
  border-bottom: 1px solid var(--tp-line);
}

.tp-provider-details dt {
  color: var(--tp-ink-soft);
  font-size: 11px;
}

.tp-provider-details dd {
  margin: 4px 0 0;
}

.tp-provider-details a {
  color: var(--tp-accent-dark);
}

/* Responsive */
@media (max-width: 1120px) {
  .tp-hero {
    grid-template-columns: 1fr 390px;
    gap: 40px;
  }
  .tp-grid-visual__item {
    width: 140px;
  }
  .tp-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tp-service-hero__layout {
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 40px;
  }
  .tp-service-content {
    grid-template-columns: minmax(0, 1fr) 235px;
    gap: 40px;
  }
  .tp-provider-card {
    grid-template-columns: 70px 1fr;
  }
  .tp-provider-card__actions {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 920px) {
  .tp-shell {
    width: min(calc(100% - 28px), var(--tp-shell));
  }
  .tp-section {
    padding-block: 66px;
  }
  .tp-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 55px;
  }
  .tp-hero__visual {
    min-height: 470px;
  }
  .tp-category-card {
    grid-template-columns: 50px 1fr;
    min-height: 220px;
    padding: 24px;
  }
  .tp-category-card__icon {
    width: 50px;
    height: 50px;
  }
  .tp-process {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .tp-process__intro {
    position: static;
  }
  .tp-audience {
    grid-template-columns: 1fr;
  }
  .tp-audience article {
    min-height: 210px;
    border-right: 0;
    border-bottom: 1px solid var(--tp-line);
  }
  .tp-audience article:last-child {
    border-bottom: 0;
  }
  .tp-final-cta {
    grid-template-columns: 1fr;
  }
  .tp-catalog-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .tp-catalog-sidebar {
    position: static;
    display: none;
  }
  .tp-catalog-sidebar.is-open {
    display: block;
  }
  .tp-mobile-filter-button {
    display: inline-flex;
    align-items: center;
  }
  .tp-filter fieldset {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px 10px;
  }
  .tp-filter legend {
    grid-column: 1 / -1;
  }
  .tp-category-hero__grid,
  .tp-category-info,
  .tp-form-panel {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .tp-service-hero__layout {
    grid-template-columns: 1fr;
  }
  .tp-service-hero__form {
    max-width: 620px;
  }
  .tp-service-content {
    grid-template-columns: 1fr;
  }
  .tp-service-toc {
    display: none;
  }
  .tp-content-block:first-child {
    padding-top: 0;
  }
  .tp-provider-hero__grid {
    grid-template-columns: 100px 1fr;
  }
  .tp-provider-hero__logo {
    width: 100px;
    height: 100px;
  }
  .tp-provider-hero__actions {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tp-provider-details {
    grid-template-columns: 1fr;
  }
  .tp-provider-details article {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .tp-shell {
    width: min(calc(100% - 22px), var(--tp-shell));
  }
  .tp-section {
    padding-block: 54px;
  }
  .tp-section-head {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
    margin-bottom: 28px;
  }
  .tp-section-head h2 {
    font-size: 34px;
  }
  .tp-hero {
    padding-top: 40px;
    gap: 38px;
  }
  .tp-hero__content h1 {
    font-size: 43px;
  }
  .tp-hero__lead {
    font-size: 16px;
  }
  .tp-search {
    min-height: 56px;
    grid-template-columns: 1fr 52px;
  }
  .tp-search button {
    width: 52px;
    padding: 0;
    justify-content: center;
    font-size: 0;
  }
  .tp-hero__actions .tp-btn {
    flex: 1 1 100%;
  }
  .tp-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .tp-hero__stats > div {
    min-width: 0;
    margin-right: 12px;
    padding-right: 12px;
  }
  .tp-hero__stats strong {
    font-size: 18px;
  }
  .tp-hero__visual {
    min-height: 390px;
  }
  .tp-grid-visual__item {
    width: 118px;
    min-height: 96px;
    padding: 14px;
  }
  .tp-grid-visual__item--5,
  .tp-grid-visual__item--6 {
    display: none;
  }
  .tp-grid-visual__core {
    width: 118px;
    height: 118px;
  }
  .tp-category-grid,
  .tp-service-grid,
  .tp-feature-list,
  .tp-object-grid,
  .tp-price-grid,
  .tp-content-block--split,
  .tp-info-grid,
  .tp-contact-grid,
  .tp-check-grid {
    grid-template-columns: 1fr;
  }
  .tp-category-card {
    min-height: 200px;
  }
  .tp-category-card footer {
    grid-column: 1 / -1;
  }
  .tp-service-card {
    min-height: 280px;
  }
  .tp-audience article {
    padding: 24px;
  }
  .tp-final-cta {
    padding: 30px 24px;
  }
  .tp-final-cta__actions,
  .tp-final-cta__actions .tp-btn {
    width: 100%;
  }
  .tp-catalog-hero,
  .tp-category-hero,
  .tp-page-hero,
  .tp-provider-hero {
    padding: 38px 0 50px;
  }
  .tp-breadcrumbs {
    margin-bottom: 28px;
  }
  .tp-catalog-hero__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .tp-catalog-hero h1,
  .tp-category-hero h1,
  .tp-page-hero h1,
  .tp-provider-hero h1 {
    font-size: 40px;
  }
  .tp-catalog-hero__count {
    padding: 18px 0 0;
    border-left: 0;
    border-top: 1px solid var(--tp-line-dark);
  }
  .tp-filter fieldset {
    grid-template-columns: 1fr;
  }
  .tp-category-hero__main {
    grid-template-columns: 1fr;
  }
  .tp-category-hero__icon {
    width: 64px;
    height: 64px;
  }
  .tp-form-panel {
    padding: 25px 18px;
  }
  .tp-form-row {
    grid-template-columns: 1fr;
  }
  .tp-service-hero h1 {
    font-size: 41px;
  }
  .tp-service-hero__facts {
    display: grid;
  }
  .tp-service-hero__facts span {
    justify-content: flex-start;
  }
  .tp-service-hero__actions .tp-btn {
    width: 100%;
  }
  .tp-service-hero__form {
    padding: 20px 16px;
  }
  .tp-content-block {
    padding: 44px 0;
  }
  .tp-content-block__head {
    grid-template-columns: 36px 1fr;
    gap: 12px;
  }
  .tp-content-block__head h2 {
    font-size: 30px;
  }
  .tp-feature-list > div {
    min-height: 68px;
  }
  .tp-price-callout {
    align-items: stretch;
    flex-direction: column;
  }
  .tp-provider-card {
    grid-template-columns: 56px 1fr;
    padding: 20px 16px;
    gap: 16px;
  }
  .tp-provider-card__logo {
    width: 56px;
    height: 56px;
  }
  .tp-provider-card__actions {
    grid-template-columns: 1fr;
  }
  .tp-mobile-bar {
    position: fixed;
    z-index: 70;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 8px max(10px, env(safe-area-inset-left)) calc(8px + env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-right));
    border-top: 1px solid var(--tp-line);
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 8px;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
  }
  .tp-mobile-bar a {
    min-height: 46px;
    border: 1px solid var(--tp-line);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--tp-ink);
    background: #fff;
    font-size: 13px;
    font-weight: 620;
    text-decoration: none;
  }
  .tp-mobile-bar a:last-child {
    color: #fff;
    background: var(--tp-accent);
    border-color: var(--tp-accent);
  }
  .tp-mobile-bar .tp-icon {
    width: 18px;
    height: 18px;
  }
  .tp-service-page {
    padding-bottom: 70px;
  }
  .tp-rich-section {
    margin-bottom: 52px;
  }
  .tp-info-grid article,
  .tp-contact-grid article {
    min-height: auto;
  }
  .tp-cta-inline {
    align-items: stretch;
    flex-direction: column;
  }
  .tp-provider-hero__grid {
    grid-template-columns: 72px 1fr;
    gap: 18px;
  }
  .tp-provider-hero__logo {
    width: 72px;
    height: 72px;
  }
  .tp-provider-hero__actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* v1.0.9 visual refinement: thinner typography + blue/graphite palette */
:root {
  --tp-ink: #182233;
  --tp-ink-soft: #69758a;
  --tp-dark: #111827;
  --tp-dark-2: #1a2438;
  --tp-accent: #3a5ed8;
  --tp-accent-dark: #2846a8;
  --tp-accent-soft: #e8eeff;
  --tp-line: #dde4f0;
  --tp-soft: #f6f8fc;
  --tp-warm: #f3f5f9;
}

.tp-page h1,
.tp-page h2,
.tp-page h3,
.tp-page h4,
.tp-error-page h1,
.tp-section-head h2,
.tp-logo__text b,
.tp-logo__text em,
.tp-footer__contact .tp-footer__phone {
  font-weight: 480 !important;
  letter-spacing: -0.03em;
}

.tp-main-nav a,
.tp-lang-switch,
.tp-kicker,
.tp-eyebrow,
.tp-btn,
.tp-text-link,
.tp-mobile-menu__head span,
.tp-footer__column > b,
.tp-footer__contact > b,
.tp-header-phone b {
  font-weight: 500 !important;
}

.tp-main-nav a {
  color: #516074;
}

.tp-logo__mark {
  border-color: #cfd7e6;
  color: var(--tp-accent);
}

.tp-btn {
  border-radius: 6px;
}

.tp-btn--primary {
  background: var(--tp-accent);
  border-color: var(--tp-accent);
}

.tp-btn--primary:hover {
  background: var(--tp-accent-dark);
  border-color: var(--tp-accent-dark);
}

.tp-btn--ghost:hover,
.tp-text-link,
.tp-kicker,
.tp-eyebrow,
.tp-mobile-menu nav a span,
.tp-lang-switch:hover {
  color: var(--tp-accent-dark);
}

.tp-header-wa {
  background: var(--tp-dark);
}

.tp-header-wa:hover {
  background: var(--tp-accent);
}

.tp-footer {
  background: #0f1727;
}

.tp-error-page {
  background:
    linear-gradient(var(--tp-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--tp-line) 1px, transparent 1px),
    #f7f9fd;
}

/* v1.0.9: practical home page and instant service search */
.tp-home-hero {
  padding: 46px 0 32px;
  background:
    radial-gradient(circle at 82% 14%, rgba(58, 94, 216, .12), transparent 30%),
    linear-gradient(180deg, #f7f9fd 0%, #fff 88%);
}

.tp-home-hero__grid {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .72fr);
  align-items: center;
  gap: clamp(42px, 6vw, 86px);
}

.tp-home-hero__content h1 {
  max-width: 790px;
  margin: 20px 0 22px;
  font-size: clamp(44px, 5.7vw, 76px);
  line-height: 1.02;
  letter-spacing: -.055em;
  font-weight: 470;
}

.tp-home-hero__lead {
  max-width: 690px;
  margin: 0 0 28px;
  color: var(--tp-ink-soft);
  font-size: 18px;
  line-height: 1.68;
}

.tp-live-search {
  position: relative;
  z-index: 12;
  max-width: 720px;
}

.tp-search--live {
  max-width: none;
  min-height: 68px;
  padding: 7px;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  border-radius: 12px;
  border-color: #cfd8e8;
  box-shadow: 0 20px 58px rgba(31, 47, 78, .12);
}

.tp-search__icon {
  display: grid;
  place-items: center;
  color: var(--tp-accent);
}

.tp-search__icon .tp-icon {
  width: 21px;
  height: 21px;
}

.tp-search--live input {
  padding-left: 2px;
  font-size: 16px;
}

.tp-search--live button {
  min-width: 122px;
  min-height: 52px;
  justify-content: center;
  border-radius: 8px;
  background: var(--tp-accent);
  font-weight: 500;
}

.tp-search--live button:hover {
  background: var(--tp-accent-dark);
}

.tp-search-suggestions {
  position: absolute;
  z-index: 20;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  overflow: hidden;
  border: 1px solid #d7dfed;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(19, 33, 58, .18);
}

.tp-search-suggestions[hidden] {
  display: none;
}

.tp-search-suggestions__head {
  min-height: 46px;
  padding: 0 17px;
  border-bottom: 1px solid var(--tp-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--tp-ink-soft);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tp-search-suggestions__head small {
  min-width: 27px;
  height: 25px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--tp-accent-dark);
  background: var(--tp-accent-soft);
  font-size: 11px;
}

.tp-search-result {
  min-height: 66px;
  padding: 9px 17px;
  border-bottom: 1px solid var(--tp-line);
  display: grid;
  grid-template-columns: 30px 1fr 25px;
  align-items: center;
  gap: 12px;
  color: var(--tp-ink);
  text-decoration: none;
}

.tp-search-result:hover,
.tp-search-result.is-active {
  color: var(--tp-ink);
  background: #f3f6fc;
}

.tp-search-result__marker {
  color: #9aa6b8;
  font-size: 10px;
  letter-spacing: .08em;
}

.tp-search-result__copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.tp-search-result__copy small {
  overflow: hidden;
  color: var(--tp-accent-dark);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tp-search-result__copy b {
  overflow: hidden;
  font-size: 14px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tp-search-result__arrow {
  color: var(--tp-accent);
  font-size: 18px;
}

.tp-search-suggestions__empty {
  padding: 24px 18px;
  color: var(--tp-ink-soft);
  text-align: center;
}

.tp-search-suggestions__all {
  min-height: 52px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--tp-accent-dark);
  background: #f8faff;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.tp-search-suggestions__all .tp-icon {
  width: 18px;
  height: 18px;
}

.tp-quick-searches {
  max-width: 720px;
  margin-top: 13px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--tp-ink-soft);
  font-size: 12px;
}

.tp-quick-searches a {
  padding: 6px 10px;
  border: 1px solid var(--tp-line);
  border-radius: 999px;
  color: #526077;
  background: rgba(255,255,255,.7);
  text-decoration: none;
}

.tp-quick-searches a:hover {
  color: var(--tp-accent-dark);
  border-color: #b9c6e7;
  background: #fff;
}

.tp-home-hero__actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tp-home-hero__stats {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 650px;
  border-top: 1px solid var(--tp-line);
  border-bottom: 1px solid var(--tp-line);
}

.tp-home-hero__stats > div {
  min-height: 82px;
  padding: 17px 20px 16px 0;
  border-right: 1px solid var(--tp-line);
  display: grid;
  align-content: center;
  gap: 3px;
}

.tp-home-hero__stats > div + div {
  padding-left: 20px;
}

.tp-home-hero__stats > div:last-child {
  border-right: 0;
}

.tp-home-hero__stats strong {
  font-size: 22px;
  font-weight: 480;
  letter-spacing: -.03em;
}

.tp-home-hero__stats span {
  color: var(--tp-ink-soft);
  font-size: 12px;
}

.tp-home-selector {
  overflow: hidden;
  border: 1px solid #d7dfed;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(24, 37, 62, .12);
}

.tp-home-selector__head {
  min-height: 112px;
  padding: 26px 28px;
  border-bottom: 1px solid var(--tp-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #f8faff;
}

.tp-home-selector__head span {
  color: var(--tp-accent-dark);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.tp-home-selector__head h2 {
  margin: 5px 0 0;
  font-size: 25px;
  font-weight: 480;
  letter-spacing: -.035em;
}

.tp-home-selector__head > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--tp-accent-dark);
  font-size: 12px;
  text-decoration: none;
}

.tp-home-selector__head .tp-icon {
  width: 17px;
  height: 17px;
}

.tp-home-selector__list {
  display: grid;
}

.tp-home-selector__list > a {
  min-height: 68px;
  padding: 10px 22px;
  border-bottom: 1px solid var(--tp-line);
  display: grid;
  grid-template-columns: 40px 1fr 20px;
  align-items: center;
  gap: 13px;
  color: var(--tp-ink);
  text-decoration: none;
}

.tp-home-selector__list > a:hover {
  color: var(--tp-ink);
  background: #f5f7fc;
}

.tp-home-selector__icon {
  width: 38px;
  height: 38px;
  border: 1px solid #dbe3f0;
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: var(--tp-accent);
  background: #fff;
}

.tp-home-selector__icon .tp-icon {
  width: 19px;
  height: 19px;
}

.tp-home-selector__text {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.tp-home-selector__text b {
  overflow: hidden;
  font-size: 14px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tp-home-selector__text small {
  color: var(--tp-ink-soft);
  font-size: 11px;
}

.tp-home-selector__list > a > .tp-icon {
  width: 18px;
  height: 18px;
  color: #9aa6b9;
}

.tp-home-selector__footer {
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #fff;
  background: var(--tp-dark);
}

.tp-home-selector__footer span {
  font-size: 13px;
  font-weight: 500;
}

.tp-home-selector__footer p {
  margin: 4px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 11px;
}

.tp-home-selector__footer > a {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.tp-home-selector__footer > a .tp-icon {
  width: 17px;
  height: 17px;
}

@media (max-width: 1020px) {
  .tp-home-hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 54px;
  }
  .tp-home-selector {
    max-width: 760px;
  }
}

@media (max-width: 680px) {
  .tp-home-hero {
    padding-top: 12px;
  }
  .tp-home-hero__grid {
    gap: 36px;
    padding-top: 28px;
  }
  .tp-home-hero__content h1 {
    font-size: 42px;
  }
  .tp-home-hero__lead {
    font-size: 16px;
  }
  .tp-search--live {
    grid-template-columns: 36px 1fr 52px;
    min-height: 60px;
    padding: 5px;
  }
  .tp-search--live button {
    min-width: 52px;
    min-height: 50px;
    padding: 0;
  }
  .tp-search--live button span {
    display: none;
  }
  .tp-quick-searches span {
    flex: 1 1 100%;
  }
  .tp-home-hero__actions .tp-btn {
    flex: 1 1 100%;
  }
  .tp-home-hero__stats {
    grid-template-columns: 1fr;
  }
  .tp-home-hero__stats > div,
  .tp-home-hero__stats > div + div {
    min-height: 66px;
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid var(--tp-line);
  }
  .tp-home-hero__stats > div:last-child {
    border-bottom: 0;
  }
  .tp-home-selector__head,
  .tp-home-selector__footer {
    padding: 20px;
  }
  .tp-home-selector__head h2 {
    font-size: 22px;
  }
  .tp-home-selector__list > a {
    padding-inline: 16px;
  }
  .tp-home-selector__footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .tp-home-selector__footer > a {
    width: 100%;
    justify-content: center;
  }
  .tp-search-suggestions {
    position: fixed;
    z-index: 160;
    top: 82px;
    left: 11px;
    right: 11px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }
}

/* === ТехПодряд 1.1.7: category and service page redesign === */
.tp-category-hero--new {
  padding: 42px 0 54px;
  background:
    radial-gradient(circle at 82% 18%, rgba(58, 94, 216, .20), transparent 28%),
    linear-gradient(135deg, #101828 0%, #18233a 100%);
}

.tp-category-hero__grid--new {
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 54px;
  align-items: stretch;
}

.tp-category-hero__copy {
  padding-top: 18px;
}

.tp-category-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tp-category-hero__label .tp-category-hero__icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  color: #a9baff;
}

.tp-category-hero__label .tp-icon {
  width: 22px;
  height: 22px;
}

.tp-category-hero--new h1 {
  max-width: 900px;
  margin-top: 28px;
  font-size: clamp(42px, 5.8vw, 72px);
  font-weight: 470;
}

.tp-category-hero--new p {
  max-width: 780px;
  font-size: 17px;
}

.tp-category-stats {
  max-width: 760px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.14);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tp-category-stats > div {
  min-width: 0;
  padding-right: 22px;
  display: grid;
  gap: 4px;
}

.tp-category-stats > div + div {
  padding-left: 22px;
  border-left: 1px solid rgba(255,255,255,.14);
}

.tp-category-stats b {
  overflow: hidden;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tp-category-stats span {
  color: rgba(255,255,255,.5);
  font-size: 11px;
}

.tp-category-brief {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  color: #fff;
  background: rgba(255,255,255,.055);
  box-shadow: 0 24px 60px rgba(0,0,0,.14);
}

.tp-category-brief__eyebrow {
  color: #a9baff;
  font-size: 11px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.tp-category-brief h2 {
  margin: 10px 0 22px;
  font-size: 26px;
  line-height: 1.15;
  font-weight: 480;
}

.tp-category-brief ol {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,.12);
}

.tp-category-brief li {
  min-height: 68px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: center;
}

.tp-category-brief li > span {
  color: #a9baff;
  font-size: 11px;
}

.tp-category-brief li b {
  display: block;
  font-size: 14px;
  font-weight: 500;
}

.tp-category-brief li p {
  margin: 2px 0 0;
  color: rgba(255,255,255,.52);
  font-size: 12px;
}

.tp-category-directory {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.tp-category-directory__aside {
  position: sticky;
  top: 96px;
  padding: 24px;
  border: 1px solid var(--tp-line);
  border-radius: 12px;
  background: #fff;
}

.tp-category-directory__aside h2 {
  margin: 10px 0 12px;
  font-size: 26px;
  line-height: 1.16;
  font-weight: 480;
}

.tp-category-directory__aside > p {
  margin: 0;
  color: var(--tp-ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.tp-category-directory__aside nav {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid var(--tp-line);
  display: grid;
}

.tp-category-directory__aside nav a {
  padding: 10px 0;
  border-bottom: 1px solid var(--tp-line);
  color: var(--tp-ink);
  font-size: 13px;
  text-decoration: none;
}

.tp-category-directory__aside nav a:hover {
  color: var(--tp-accent-dark);
}

.tp-category-directory__help {
  margin-top: 20px;
  padding: 16px;
  border-radius: 9px;
  display: grid;
  gap: 8px;
  background: var(--tp-accent-soft);
}

.tp-category-directory__help span {
  color: var(--tp-ink-soft);
  font-size: 12px;
  line-height: 1.45;
}

.tp-category-directory__help a {
  color: var(--tp-accent-dark);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.tp-category-toolbar {
  min-height: 58px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--tp-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.tp-category-toolbar > div {
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.tp-category-toolbar > div span {
  color: var(--tp-ink-soft);
  font-size: 13px;
}

.tp-category-toolbar > div b {
  min-width: 26px;
  color: var(--tp-accent-dark);
  font-size: 20px;
  font-weight: 500;
}

.tp-category-search {
  width: min(100%, 360px);
  height: 46px;
  padding: 0 8px 0 13px;
  border: 1px solid var(--tp-line);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 22px 1fr 30px;
  align-items: center;
  background: #fff;
}

.tp-category-search > .tp-icon {
  width: 18px;
  height: 18px;
  color: #8793a6;
}

.tp-category-search input {
  min-width: 0;
  height: 100%;
  padding: 0 10px;
  border: 0;
  outline: 0;
  color: var(--tp-ink);
  background: transparent;
  font: inherit;
  font-size: 13px;
}

.tp-category-search button {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #8995a8;
  background: transparent;
  font-size: 20px;
  line-height: 1;
  opacity: 0;
  cursor: pointer;
  pointer-events: none;
}

.tp-category-search button.is-visible {
  opacity: 1;
  pointer-events: auto;
}

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

.tp-category-service-item[hidden] {
  display: none !important;
}

.tp-category-service-item .tp-service-card {
  height: 100%;
  min-height: 270px;
}

.tp-category-empty {
  min-height: 360px;
  padding: 50px 24px;
  border: 1px dashed var(--tp-line);
  border-radius: 12px;
  place-content: center;
  justify-items: center;
  text-align: center;
}

.tp-category-empty:not([hidden]) {
  display: grid;
}

.tp-category-empty > span {
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--tp-accent);
  background: var(--tp-accent-soft);
}

.tp-category-empty h3 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 480;
}

.tp-category-empty p {
  max-width: 480px;
  margin: 0 0 22px;
  color: var(--tp-ink-soft);
}

.tp-section-head--category {
  margin-bottom: 28px;
}

.tp-category-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--tp-line);
  border-left: 1px solid var(--tp-line);
}

.tp-category-process article {
  min-height: 230px;
  padding: 24px;
  border-right: 1px solid var(--tp-line);
  border-bottom: 1px solid var(--tp-line);
  background: #fff;
}

.tp-category-process article > span {
  color: var(--tp-accent-dark);
  font-size: 12px;
}

.tp-category-process h3 {
  margin: 42px 0 10px;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 480;
}

.tp-category-process p {
  margin: 0;
  color: var(--tp-ink-soft);
  font-size: 13px;
  line-height: 1.58;
}

.tp-category-assurance {
  padding: 42px;
  border: 1px solid var(--tp-line);
  border-radius: 14px;
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 60px;
  background: #fff;
}

.tp-category-assurance h2 {
  margin: 10px 0 16px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  font-weight: 470;
}

.tp-category-assurance p {
  margin: 0;
  color: var(--tp-ink-soft);
  line-height: 1.68;
}

.tp-assurance-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.tp-assurance-list > span {
  min-height: 126px;
  padding: 18px;
  border: 1px solid var(--tp-line);
  border-radius: 9px;
  display: grid;
  grid-template-columns: 24px 1fr;
  align-content: start;
  gap: 6px 10px;
}

.tp-assurance-list .tp-icon {
  width: 19px;
  height: 19px;
  color: var(--tp-accent-dark);
}

.tp-assurance-list b {
  font-size: 15px;
  font-weight: 500;
}

.tp-assurance-list small {
  grid-column: 2;
  color: var(--tp-ink-soft);
  font-size: 12px;
  line-height: 1.45;
}

.tp-form-panel--category {
  background: linear-gradient(135deg, #f7f9fd 0%, #eef2fb 100%);
}

/* Service page 1.1.7 */
.tp-service-hero--new {
  padding: 38px 0 0;
  background: linear-gradient(180deg, #f7f9fd 0%, #fff 100%);
}

.tp-service-hero__layout--new {
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 56px;
  padding-bottom: 42px;
}

.tp-service-hero--new h1 {
  max-width: 880px;
  font-size: clamp(42px, 5.8vw, 72px);
  font-weight: 465;
}

.tp-service-hero__form--new {
  border-radius: 14px;
  box-shadow: 0 22px 60px rgba(23, 34, 55, .10);
}

.tp-side-form__head p {
  margin: 8px 0 0;
  color: var(--tp-ink-soft);
  font-size: 12px;
  line-height: 1.5;
}

.tp-side-form__note {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--tp-line);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--tp-ink-soft);
  font-size: 11px;
  line-height: 1.5;
}

.tp-side-form__note .tp-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--tp-accent-dark);
}

.tp-service-overview {
  border-top: 1px solid var(--tp-line);
  border-left: 1px solid var(--tp-line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #fff;
}

.tp-service-overview > div {
  min-height: 124px;
  padding: 22px;
  border-right: 1px solid var(--tp-line);
  border-bottom: 1px solid var(--tp-line);
  display: grid;
  align-content: center;
  gap: 5px;
}

.tp-service-overview span {
  color: var(--tp-ink-soft);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tp-service-overview b {
  overflow: hidden;
  font-size: 17px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tp-service-overview small {
  color: var(--tp-ink-soft);
  font-size: 11px;
}

.tp-service-content--new {
  grid-template-columns: minmax(0, 1fr) 286px;
  gap: 42px;
  padding-top: 72px;
}

.tp-content-block--panel {
  margin-bottom: 18px;
  padding: 36px;
  border: 1px solid var(--tp-line);
  border-radius: 14px;
  background: #fff;
}

.tp-content-block--panel:first-child {
  padding-top: 36px;
}

.tp-content-block--panel:last-child {
  border-bottom: 1px solid var(--tp-line);
}

.tp-content-block__eyebrow {
  display: block;
  margin-bottom: 7px;
  color: var(--tp-accent-dark);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.tp-content-block--panel .tp-content-block__head {
  margin-bottom: 26px;
}

.tp-content-block--panel .tp-content-block__head h2 {
  font-weight: 470;
}

.tp-feature-list--new {
  gap: 10px;
  border: 0;
}

.tp-feature-list--new > div {
  min-height: 72px;
  border: 1px solid var(--tp-line);
  border-radius: 8px;
  background: var(--tp-soft);
}

.tp-object-grid--new article {
  min-height: 172px;
  position: relative;
  overflow: hidden;
}

.tp-object-grid--new article > span {
  width: auto;
  height: auto;
  color: var(--tp-accent-dark);
  background: transparent;
  font-size: 11px;
}

.tp-object-grid--new article::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 86px;
  height: 86px;
  border: 1px solid var(--tp-line);
  border-radius: 50%;
}

.tp-timeline--new li {
  grid-template-columns: 58px 1fr;
  padding: 24px 0;
}

.tp-timeline--new li > span {
  width: 34px;
  height: 34px;
  border: 1px solid var(--tp-line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--tp-soft);
}

.tp-service-docs-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(250px, .8fr);
  gap: 18px;
}

.tp-service-docs-grid > div {
  padding: 24px;
  border: 1px solid var(--tp-line);
  border-radius: 10px;
}

.tp-service-docs-grid h3 {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 480;
}

.tp-service-deadline {
  color: #fff;
  background: var(--tp-dark);
}

.tp-service-deadline > span {
  color: rgba(255,255,255,.56);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tp-service-deadline > b {
  display: block;
  margin: 18px 0 14px;
  font-size: 26px;
  line-height: 1.18;
  font-weight: 470;
}

.tp-service-deadline > p {
  margin: 0 0 24px;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  line-height: 1.6;
}

.tp-service-deadline .tp-text-link {
  color: #fff;
}

.tp-price-grid--new article {
  min-height: 104px;
  border-radius: 8px;
  background: var(--tp-soft);
}

.tp-price-callout--new {
  padding: 28px;
  border-radius: 10px;
  background: linear-gradient(135deg, #111827 0%, #24345b 100%);
}

.tp-price-callout--new p {
  margin: 6px 0 0;
  color: rgba(255,255,255,.55);
  font-size: 12px;
}

.tp-provider-card--new {
  background: var(--tp-soft);
}

.tp-faq-list--new summary {
  display: grid;
  grid-template-columns: 40px 1fr 34px;
  justify-content: normal;
}

.tp-faq-list--new .tp-faq-number {
  width: auto;
  height: auto;
  border: 0;
  color: var(--tp-accent-dark);
  font-size: 11px;
}

.tp-faq-list--new summary b {
  font-size: 16px;
  font-weight: 500;
}

.tp-faq-list--new summary i {
  width: 30px;
  height: 30px;
  border: 1px solid var(--tp-line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--tp-accent-dark);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  transition: transform .2s ease;
}

.tp-faq-list--new details[open] summary i {
  transform: rotate(45deg);
}

.tp-faq-list--new details > p {
  padding-left: 40px;
}

.tp-service-toc--new {
  top: 92px;
}

.tp-service-toc--new .tp-service-toc__box a {
  position: relative;
  padding-left: 14px;
}

.tp-service-toc--new .tp-service-toc__box a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c1cad8;
  transform: translateY(-50%);
}

.tp-service-toc--new .tp-service-toc__box a.is-active {
  color: var(--tp-accent-dark);
}

.tp-service-toc--new .tp-service-toc__box a.is-active::before {
  background: var(--tp-accent);
  box-shadow: 0 0 0 4px var(--tp-accent-soft);
}

.tp-service-toc__request {
  padding: 20px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(145deg, #18233a, #26375f);
}

.tp-service-toc__request > span {
  font-size: 16px;
  font-weight: 500;
}

.tp-service-toc__request p {
  margin: 7px 0 16px;
  color: rgba(255,255,255,.6);
  font-size: 12px;
  line-height: 1.5;
}

.tp-form-panel--service-new {
  border-radius: 14px;
  background: linear-gradient(135deg, #f7f9fd 0%, #eef2fb 100%);
}

.tp-related-section {
  margin-top: 40px;
}

@media (max-width: 1120px) {
  .tp-category-hero__grid--new,
  .tp-service-hero__layout--new {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 36px;
  }
  .tp-category-directory {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 28px;
  }
  .tp-category-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tp-service-content--new {
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 28px;
  }
}

@media (max-width: 900px) {
  .tp-category-hero__grid--new,
  .tp-service-hero__layout--new,
  .tp-category-directory,
  .tp-category-assurance,
  .tp-service-content--new {
    grid-template-columns: 1fr;
  }
  .tp-category-brief {
    max-width: 620px;
  }
  .tp-category-directory__aside,
  .tp-service-toc--new {
    position: static;
  }
  .tp-category-directory__aside {
    display: none;
  }
  .tp-category-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tp-service-overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tp-service-content--new {
    padding-top: 48px;
  }
  .tp-service-toc--new {
    order: -1;
    grid-template-columns: 1fr 1fr;
  }
  .tp-service-toc__box {
    display: none;
  }
  .tp-service-docs-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .tp-category-hero--new {
    padding-top: 28px;
  }
  .tp-category-hero--new h1,
  .tp-service-hero--new h1 {
    font-size: 42px;
  }
  .tp-category-stats {
    grid-template-columns: 1fr;
  }
  .tp-category-stats > div,
  .tp-category-stats > div + div {
    min-height: 60px;
    padding: 10px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .tp-category-stats > div:last-child {
    border-bottom: 0;
  }
  .tp-category-brief {
    padding: 22px;
  }
  .tp-category-toolbar {
    align-items: stretch;
    flex-direction: column;
  }
  .tp-category-search {
    width: 100%;
  }
  .tp-category-service-grid,
  .tp-category-process,
  .tp-assurance-list,
  .tp-service-overview,
  .tp-feature-list--new,
  .tp-object-grid--new,
  .tp-price-grid--new {
    grid-template-columns: 1fr;
  }
  .tp-category-assurance,
  .tp-content-block--panel {
    padding: 24px 18px;
  }
  .tp-category-process article {
    min-height: 190px;
  }
  .tp-service-hero--new {
    padding-top: 28px;
  }
  .tp-service-hero__layout--new {
    padding-bottom: 28px;
  }
  .tp-service-overview > div {
    min-height: 100px;
  }
  .tp-content-block--panel .tp-content-block__head {
    grid-template-columns: 34px 1fr;
    gap: 10px;
  }
  .tp-content-block--panel .tp-content-block__head h2 {
    font-size: 30px;
  }
  .tp-service-docs-grid > div,
  .tp-price-callout--new {
    padding: 20px;
  }
  .tp-price-callout--new {
    align-items: stretch;
    flex-direction: column;
  }
  .tp-provider-card--new {
    grid-template-columns: 58px 1fr;
  }
  .tp-provider-card--new .tp-provider-card__logo {
    width: 58px;
    height: 58px;
  }
  .tp-provider-card--new .tp-provider-card__actions {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
  }
  .tp-service-toc--new {
    grid-template-columns: 1fr;
  }
  .tp-faq-list--new summary {
    grid-template-columns: 30px 1fr 30px;
  }
  .tp-faq-list--new details > p {
    padding-left: 30px;
  }
}
.tp-category-page .tp-service-card:hover,
.tp-service-page--new .tp-service-card:hover {
  border-color: rgba(58, 94, 216, .42);
  box-shadow: 0 16px 38px rgba(34, 53, 98, .09);
}

/* === ТехПодряд 1.1.7: каталог, фильтры и пагинация === */
.tp-catalog-hero--new {
  padding: 42px 0 28px;
  color: var(--tp-ink);
  background:
    radial-gradient(circle at 86% 12%, rgba(58,94,216,.12), transparent 28%),
    linear-gradient(180deg, #f7f9fd 0%, #eef3fb 100%);
  border-bottom: 1px solid var(--tp-line);
}

.tp-catalog-hero--new .tp-breadcrumbs {
  color: var(--tp-ink-soft);
}

.tp-catalog-hero--new .tp-breadcrumbs a {
  color: var(--tp-ink-soft);
}

.tp-catalog-hero--new .tp-catalog-hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
  align-items: end;
  gap: 70px;
}

.tp-catalog-hero--new .tp-kicker {
  color: var(--tp-accent-dark);
}

.tp-catalog-hero--new h1 {
  max-width: 900px;
  margin: 12px 0 18px;
  color: var(--tp-dark);
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 470;
  letter-spacing: -.052em;
}

.tp-catalog-hero--new p {
  max-width: 790px;
  color: var(--tp-ink-soft);
  font-size: 16px;
}

.tp-catalog-hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(58,94,216,.17);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(10px);
}

.tp-catalog-hero__metrics > div {
  min-height: 108px;
  padding: 20px 16px;
  border-right: 1px solid var(--tp-line);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
}

.tp-catalog-hero__metrics > div:last-child {
  border-right: 0;
}

.tp-catalog-hero__metrics strong {
  color: var(--tp-dark);
  font-size: 25px;
  line-height: 1;
  font-weight: 480;
  letter-spacing: -.04em;
}

.tp-catalog-hero__metrics span {
  color: var(--tp-ink-soft);
  font-size: 11px;
  line-height: 1.35;
}

.tp-catalog-search {
  min-height: 66px;
  margin-top: 34px;
  padding: 7px 7px 7px 18px;
  border: 1px solid #d7dfec;
  border-radius: 12px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(22,36,66,.07);
}

.tp-catalog-search > span {
  color: var(--tp-accent);
}

.tp-catalog-search > span .tp-icon {
  width: 22px;
  height: 22px;
}

.tp-catalog-search input {
  min-width: 0;
  height: 50px;
  padding: 0 5px;
  border: 0;
  outline: 0;
  color: var(--tp-ink);
  background: transparent;
  font-size: 15px;
}

.tp-catalog-search button {
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  background: var(--tp-accent);
  cursor: pointer;
  font-weight: 500;
}

.tp-catalog-search button:hover {
  background: var(--tp-accent-dark);
}

.tp-catalog-search button .tp-icon {
  width: 18px;
  height: 18px;
}

.tp-catalog-chips {
  margin-top: 18px;
  padding-bottom: 2px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.tp-catalog-chips a {
  min-height: 37px;
  padding: 0 11px 0 13px;
  border: 1px solid #d8e0ed;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  color: #4e5b70;
  background: rgba(255,255,255,.72);
  font-size: 12px;
  text-decoration: none;
}

.tp-catalog-chips a small {
  min-width: 24px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  color: #758197;
  background: #eef2f8;
  font-size: 10px;
}

.tp-catalog-chips a:hover,
.tp-catalog-chips a.is-active {
  border-color: var(--tp-accent);
  color: #fff;
  background: var(--tp-accent);
}

.tp-catalog-chips a:hover small,
.tp-catalog-chips a.is-active small {
  color: #fff;
  background: rgba(255,255,255,.18);
}

.tp-catalog-layout--new {
  grid-template-columns: 286px minmax(0, 1fr);
  gap: 34px;
  padding-top: 64px;
  padding-bottom: 88px;
}

.tp-catalog-layout--new .tp-catalog-sidebar {
  top: 104px;
}

.tp-catalog-sidebar__head {
  display: none;
}

.tp-filter--new {
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 12px 34px rgba(17,31,60,.045);
}

.tp-filter-search > div {
  height: 44px;
  border: 1px solid var(--tp-line);
  border-radius: 7px;
  display: grid;
  grid-template-columns: 1fr 42px;
  overflow: hidden;
}

.tp-filter-search input {
  min-width: 0;
  padding: 0 11px;
  border: 0;
  outline: 0;
  background: #fff;
  font-size: 13px;
}

.tp-filter-search button {
  border: 0;
  color: #fff;
  background: var(--tp-dark);
  cursor: pointer;
}

.tp-filter-search button .tp-icon {
  width: 17px;
  height: 17px;
}

.tp-filter--new fieldset {
  max-height: 450px;
  overflow-y: auto;
  padding-right: 3px;
}

.tp-filter-sort {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--tp-line);
}

.tp-filter-sort select,
.tp-catalog-inline-sort select {
  width: 100%;
  height: 43px;
  padding: 0 34px 0 11px;
  border: 1px solid var(--tp-line);
  border-radius: 7px;
  color: var(--tp-ink);
  background: #fff;
  font-size: 13px;
  cursor: pointer;
}

.tp-filter-submit {
  margin-top: 17px;
  min-height: 44px;
  font-size: 13px;
}

.tp-catalog-toolbar--new {
  min-height: 62px;
  margin-bottom: 18px;
  padding: 0 0 18px;
  align-items: flex-end;
}

.tp-catalog-result-copy {
  display: grid !important;
  gap: 3px !important;
}

.tp-catalog-result-copy > span {
  color: var(--tp-accent-dark);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tp-catalog-result-copy b {
  color: var(--tp-dark);
  font-size: 24px;
  font-weight: 480;
  letter-spacing: -.035em;
}

.tp-catalog-result-copy small {
  color: var(--tp-ink-soft);
  font-size: 12px;
}

.tp-catalog-toolbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tp-catalog-inline-sort {
  width: 190px;
}

.tp-active-filters {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
}

.tp-active-filters a {
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid #dce3ef;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #4f5c70;
  background: #f8faff;
  font-size: 11px;
  text-decoration: none;
}

.tp-active-filters a span {
  color: #8792a4;
}

.tp-active-filters a:hover {
  border-color: var(--tp-accent);
  color: var(--tp-accent-dark);
}

.tp-active-filters .tp-active-filters__clear {
  border-color: transparent;
  background: transparent;
  color: var(--tp-accent-dark);
}

.tp-service-grid--catalog-new {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.tp-service-grid--catalog-new .tp-service-card {
  min-height: 250px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: none;
}

.tp-service-grid--catalog-new .tp-service-card h3 {
  font-size: 19px;
  font-weight: 480;
}

.tp-service-grid--catalog-new .tp-service-card p {
  font-size: 13px;
  line-height: 1.58;
}

.tp-catalog-mini-cta {
  min-height: 250px;
  padding: 24px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
  background:
    linear-gradient(150deg, rgba(58,94,216,.98), rgba(24,39,75,.98)),
    var(--tp-dark);
}

.tp-catalog-mini-cta span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255,255,255,.65);
  font-size: 10px;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.tp-catalog-mini-cta b {
  display: block;
  max-width: 260px;
  font-size: 24px;
  line-height: 1.12;
  font-weight: 470;
  letter-spacing: -.04em;
}

.tp-catalog-mini-cta p {
  margin: 12px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 13px;
}

.tp-catalog-mini-cta > a {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
}

.tp-catalog-mini-cta > a:hover {
  background: rgba(255,255,255,.1);
}

.tp-catalog-mini-cta .tp-icon {
  width: 18px;
  height: 18px;
}

.tp-pagination {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.tp-pagination > div {
  display: flex;
  align-items: center;
  gap: 6px;
}

.tp-pagination a,
.tp-pagination span:not(.tp-pagination__dots) {
  min-width: 40px;
  height: 40px;
  padding: 0 8px;
  border: 1px solid var(--tp-line);
  border-radius: 7px;
  display: inline-grid;
  place-items: center;
  color: var(--tp-ink-soft);
  background: #fff;
  text-decoration: none;
  font-size: 13px;
}

.tp-pagination a:hover,
.tp-pagination .is-current {
  border-color: var(--tp-accent);
  color: #fff;
  background: var(--tp-accent);
}

.tp-pagination .tp-pagination__arrow {
  font-size: 18px;
}

.tp-pagination .is-disabled {
  opacity: .38;
}

.tp-pagination__dots {
  padding: 0 4px;
  color: #8b95a6;
}

.tp-empty--catalog {
  border-radius: 12px;
  background: #fbfcff;
}

.tp-catalog-help {
  border-top: 1px solid var(--tp-line);
}

.tp-catalog-help__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--tp-line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.tp-catalog-help__grid article {
  min-height: 210px;
  padding: 28px;
  border-right: 1px solid var(--tp-line);
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
}

.tp-catalog-help__grid article:last-child {
  border-right: 0;
}

.tp-catalog-help__grid article > span {
  color: var(--tp-accent);
  font-size: 12px;
  letter-spacing: .08em;
}

.tp-catalog-help__grid h3 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 480;
  letter-spacing: -.03em;
}

.tp-catalog-help__grid p {
  margin: 0;
  color: var(--tp-ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.tp-catalog-filter-backdrop {
  display: none;
}

@media (max-width: 1180px) {
  .tp-catalog-hero--new .tp-catalog-hero__grid {
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 40px;
  }

  .tp-service-grid--catalog-new {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .tp-catalog-hero--new .tp-catalog-hero__grid {
    grid-template-columns: 1fr;
  }

  .tp-catalog-hero__metrics {
    max-width: 620px;
  }

  .tp-catalog-layout--new {
    grid-template-columns: 1fr;
    padding-top: 42px;
  }

  .tp-catalog-layout--new .tp-catalog-sidebar {
    position: fixed;
    z-index: 160;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(92vw, 430px);
    padding: 0;
    display: block;
    overflow-y: auto;
    background: #fff;
    box-shadow: -20px 0 70px rgba(13,25,50,.18);
    transform: translateX(102%);
    transition: transform .25s ease;
  }

  .tp-catalog-layout--new .tp-catalog-sidebar.is-open {
    transform: translateX(0);
  }

  .tp-catalog-sidebar__head {
    position: sticky;
    z-index: 2;
    top: 0;
    min-height: 72px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--tp-line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
  }

  .tp-catalog-sidebar__head > div {
    display: grid;
    gap: 2px;
  }

  .tp-catalog-sidebar__head span {
    color: var(--tp-accent-dark);
    font-size: 10px;
    letter-spacing: .09em;
    text-transform: uppercase;
  }

  .tp-catalog-sidebar__head b {
    font-weight: 500;
  }

  .tp-catalog-sidebar__head button {
    width: 38px;
    height: 38px;
    border: 1px solid var(--tp-line);
    border-radius: 50%;
    color: var(--tp-ink);
    background: #fff;
    font-size: 24px;
    line-height: 1;
  }

  .tp-filter--new {
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .tp-filter--new fieldset {
    max-height: none;
    display: grid;
    grid-template-columns: 1fr;
  }

  .tp-catalog-filter-backdrop {
    position: fixed;
    z-index: 150;
    inset: 0;
    display: block;
    background: rgba(11,20,38,.46);
  }

  .tp-catalog-filter-backdrop[hidden] {
    display: none;
  }

  .tp-mobile-filter-button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
  }

  .tp-mobile-filter-button .tp-icon {
    width: 17px;
    height: 17px;
  }

  .tp-catalog-inline-sort {
    width: 165px;
  }

  html.tp-filter-open {
    overflow: hidden;
  }
}

@media (max-width: 680px) {
  .tp-catalog-hero--new {
    padding: 30px 0 22px;
  }

  .tp-catalog-hero--new h1 {
    font-size: 38px;
  }

  .tp-catalog-hero--new p {
    font-size: 14px;
  }

  .tp-catalog-hero__metrics {
    grid-template-columns: 1fr 1fr;
  }

  .tp-catalog-hero__metrics > div {
    min-height: 84px;
  }

  .tp-catalog-hero__metrics > div:nth-child(2) {
    border-right: 0;
  }

  .tp-catalog-hero__metrics > div:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--tp-line);
  }

  .tp-catalog-search {
    min-height: 58px;
    padding: 5px 5px 5px 13px;
    grid-template-columns: 22px minmax(0, 1fr) auto;
  }

  .tp-catalog-search input {
    height: 46px;
    font-size: 13px;
  }

  .tp-catalog-search button {
    min-height: 46px;
    padding: 0 15px;
  }

  .tp-catalog-search button .tp-icon {
    display: none;
  }

  .tp-catalog-toolbar--new {
    align-items: flex-start;
    flex-direction: column;
  }

  .tp-catalog-toolbar__actions {
    width: 100%;
  }

  .tp-catalog-inline-sort {
    flex: 1;
    width: auto;
  }

  .tp-mobile-filter-button {
    min-height: 43px;
  }

  .tp-service-grid--catalog-new {
    grid-template-columns: 1fr;
  }

  .tp-service-grid--catalog-new .tp-service-card,
  .tp-catalog-mini-cta {
    min-height: 220px;
  }

  .tp-pagination {
    gap: 7px;
  }

  .tp-pagination a,
  .tp-pagination span:not(.tp-pagination__dots) {
    min-width: 36px;
    height: 36px;
  }

  .tp-pagination > div {
    gap: 4px;
  }

  .tp-catalog-help__grid {
    grid-template-columns: 1fr;
  }

  .tp-catalog-help__grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--tp-line);
  }

  .tp-catalog-help__grid article:last-child {
    border-bottom: 0;
  }
}

/* 1.1.7 — SEO launch without in-house request processing */
.tp-service-hero__form--directory {
  display: grid;
  align-content: start;
  gap: 22px;
}

.tp-directory-status {
  display: grid;
  gap: 10px;
}

.tp-directory-status > div {
  min-height: 66px;
  padding: 13px 14px;
  border: 1px solid var(--tp-line);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  column-gap: 10px;
  background: #fff;
}

.tp-directory-status .tp-icon {
  grid-row: 1 / 3;
  width: 21px;
  height: 21px;
  color: var(--tp-accent);
}

.tp-directory-status b {
  font-weight: 520;
}

.tp-directory-status small {
  color: var(--tp-ink-soft);
}

.tp-price-callout--directory {
  background: var(--tp-dark);
}

.tp-external-providers {
  display: grid;
  gap: 14px;
}

.tp-external-provider-card {
  padding: 22px;
  border: 1px solid var(--tp-line);
  border-radius: 12px;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) 210px;
  align-items: center;
  gap: 22px;
  background: #fff;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.tp-external-provider-card:hover {
  border-color: #bcc9e8;
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(28, 44, 78, .07);
}

.tp-external-provider-card.is-featured {
  border-color: #b8c8f5;
  background: linear-gradient(135deg, #fff, #f7f9ff);
}

.tp-external-provider-card__logo {
  width: 68px;
  height: 68px;
  border: 1px solid var(--tp-line);
  border-radius: 10px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--tp-soft);
}

.tp-external-provider-card__logo img {
  width: 100%;
  height: 100%;
  padding: 8px;
  object-fit: contain;
}

.tp-external-provider-card__logo span {
  color: var(--tp-accent-dark);
  font-size: 19px;
  font-weight: 520;
}

.tp-external-provider-card__badges {
  min-height: 18px;
  margin-bottom: 7px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tp-external-provider-card__badges span {
  padding: 3px 7px;
  border-radius: 20px;
  color: #687286;
  background: #eef1f7;
  font-size: 10px;
  font-weight: 520;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.tp-external-provider-card__badges span.is-verified {
  color: #274a7e;
  background: #e9efff;
}

.tp-external-provider-card__badges .tp-icon {
  width: 12px;
  height: 12px;
  vertical-align: -2px;
}

.tp-external-provider-card__body h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 500;
}

.tp-external-provider-card__body > p {
  margin: 7px 0 12px;
  color: var(--tp-ink-soft);
  line-height: 1.6;
}

.tp-external-provider-card__meta,
.tp-external-provider-card__contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.tp-external-provider-card__meta span,
.tp-external-provider-card__contacts a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #667187;
  font-size: 12px;
  text-decoration: none;
}

.tp-external-provider-card__meta .tp-icon,
.tp-external-provider-card__contacts .tp-icon {
  width: 15px;
  height: 15px;
}

.tp-external-provider-card__contacts {
  margin-top: 11px;
}

.tp-external-provider-card__contacts a:hover {
  color: var(--tp-accent-dark);
}

.tp-external-provider-card__action {
  display: grid;
  gap: 8px;
}

.tp-external-provider-card__action small {
  color: #8a94a5;
  font-size: 10px;
  line-height: 1.4;
  text-align: center;
}

.tp-provider-placeholder {
  padding: 28px;
  border: 1px dashed #b8c4da;
  border-radius: 12px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  background: #f8faff;
}

.tp-provider-placeholder__icon {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--tp-accent);
  background: #e8eeff;
}

.tp-provider-placeholder__icon .tp-icon {
  width: 25px;
  height: 25px;
}

.tp-provider-placeholder span {
  color: var(--tp-accent-dark);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tp-provider-placeholder h3 {
  margin: 6px 0;
  font-size: 22px;
  font-weight: 500;
}

.tp-provider-placeholder p {
  margin: 0;
  color: var(--tp-ink-soft);
  line-height: 1.6;
}

.tp-external-disclaimer {
  margin-top: 16px;
  padding: 15px 17px;
  border: 1px solid var(--tp-line);
  border-radius: 8px;
  display: flex;
  gap: 12px;
  color: var(--tp-ink-soft);
  background: var(--tp-soft);
}

.tp-external-disclaimer .tp-icon {
  width: 20px;
  height: 20px;
  color: var(--tp-accent-dark);
}

.tp-external-disclaimer p {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
}

.tp-service-toc__notice {
  padding: 16px;
  border: 1px solid var(--tp-line);
  border-radius: 9px;
  background: #fff;
}

.tp-service-toc__notice > span {
  color: var(--tp-accent-dark);
}

.tp-service-toc__notice p {
  margin: 8px 0;
  color: var(--tp-ink-soft);
  font-size: 12px;
}

.tp-service-toc__notice a {
  color: var(--tp-accent-dark);
  font-size: 12px;
  text-decoration: none;
}

.tp-seo-launch-cta {
  padding: 38px 42px;
  border: 1px solid var(--tp-line);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: #fff;
}

.tp-seo-launch-cta h2 {
  max-width: 780px;
  margin: 8px 0;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.12;
  font-weight: 480;
}

.tp-seo-launch-cta p {
  margin: 0;
  color: var(--tp-ink-soft);
}

.tp-seo-launch-cta > div:last-child {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.tp-category-brief--directory {
  align-self: stretch;
}

.tp-catalog-mini-cta--directory a {
  white-space: nowrap;
}

.tp-mobile-bar--directory a {
  color: var(--tp-ink);
  background: #fff;
}

@media (max-width: 980px) {
  .tp-external-provider-card {
    grid-template-columns: 58px minmax(0, 1fr);
  }
  .tp-external-provider-card__logo {
    width: 58px;
    height: 58px;
  }
  .tp-external-provider-card__action {
    grid-column: 1 / -1;
  }
  .tp-provider-placeholder {
    grid-template-columns: 52px 1fr;
  }
  .tp-provider-placeholder > .tp-btn {
    grid-column: 1 / -1;
  }
  .tp-seo-launch-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .tp-external-provider-card {
    padding: 18px;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
  }
  .tp-external-provider-card__logo {
    width: 48px;
    height: 48px;
  }
  .tp-external-provider-card__body h3 {
    font-size: 18px;
  }
  .tp-provider-placeholder {
    padding: 20px;
    grid-template-columns: 1fr;
  }
  .tp-provider-placeholder__icon {
    width: 48px;
    height: 48px;
  }
  .tp-seo-launch-cta {
    padding: 28px 22px;
  }
  .tp-seo-launch-cta > div:last-child,
  .tp-seo-launch-cta .tp-btn {
    width: 100%;
  }
}

.tp-service-card__provider-status {
  color: #8791a3;
  font-size: 11px;
  text-transform: none;
}

.tp-service-card__provider-status.has-providers {
  color: var(--tp-accent-dark);
}

/* === ТехПодряд 1.1.7: cold white redesign === */
:root {
  --tp-ink: #172033;
  --tp-ink-soft: #647087;
  --tp-dark: #111827;
  --tp-dark-2: #1b2435;
  --tp-accent: #315ee8;
  --tp-accent-dark: #2449bb;
  --tp-accent-soft: #eaf0ff;
  --tp-line: #e2e7f0;
  --tp-line-dark: rgba(255,255,255,.16);
  --tp-surface: #ffffff;
  --tp-soft: #f6f8fc;
  --tp-warm: #f6f8fc;
}

.tp-page,
.tp-main,
.tp-page-content,
.tp-service-content,
.tp-provider-details,
.tp-category-directory,
.tp-catalog-layout--new {
  background: #ffffff !important;
}

.tp-section--soft,
.tp-catalog-help,
.tp-service-related,
.tp-provider-services,
.tp-page .tp-rich-section:nth-child(even) {
  background: #f6f8fc !important;
}

.tp-home-hero,
.tp-catalog-hero--new,
.tp-service-hero,
.tp-page-hero,
.tp-provider-hero {
  background:
    radial-gradient(circle at 86% 10%, rgba(49,94,232,.07), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%) !important;
}

.tp-home-hero {
  border-bottom: 1px solid var(--tp-line);
}

.tp-catalog-hero--new {
  border-bottom-color: var(--tp-line);
}

.tp-section {
  background-color: #ffffff;
}

.tp-page h1,
.tp-page h2,
.tp-page h3,
.tp-page h4,
.tp-home-hero__content h1,
.tp-catalog-hero--new h1,
.tp-service-hero h1,
.tp-page-hero h1,
.tp-provider-hero h1,
.tp-category-hero--new h1 {
  color: var(--tp-dark);
  font-weight: 460 !important;
}

.tp-home-hero__content h1,
.tp-service-hero h1,
.tp-catalog-hero--new h1 {
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.035;
  letter-spacing: -.05em;
}

.tp-section-head h2,
.tp-content-block__head h2,
.tp-rich-section > h2 {
  font-weight: 470 !important;
}

.tp-home-selector,
.tp-search-suggestions,
.tp-catalog-hero__metrics,
.tp-catalog-search,
.tp-service-hero__form,
.tp-category-brief,
.tp-service-card,
.tp-category-card,
.tp-provider-card,
.tp-info-grid article,
.tp-price-grid article,
.tp-faq-list details,
.tp-catalog-help__grid,
.tp-provider-details article,
.tp-content-block {
  background: #ffffff !important;
  border-color: var(--tp-line) !important;
  box-shadow: 0 12px 32px rgba(21, 32, 54, .045) !important;
}

.tp-home-selector {
  box-shadow: 0 20px 56px rgba(21, 32, 54, .075) !important;
}

.tp-home-selector__head,
.tp-search-suggestions__all,
.tp-active-filters a,
.tp-empty--catalog,
.tp-filter--new,
.tp-category-info,
.tp-service-toc__box,
.tp-service-toc__contact {
  background: #f8faff !important;
}

.tp-category-card:hover,
.tp-service-card:hover,
.tp-provider-card:hover {
  border-color: rgba(49,94,232,.35) !important;
  box-shadow: 0 16px 38px rgba(25, 43, 82, .075) !important;
}

.tp-quick-searches a,
.tp-catalog-chips a,
.tp-active-filters a,
.tp-pagination a,
.tp-pagination span:not(.tp-pagination__dots) {
  background: #ffffff;
}

.tp-category-hero--new {
  background:
    radial-gradient(circle at 82% 15%, rgba(93,125,255,.18), transparent 30%),
    linear-gradient(135deg, #111827 0%, #1c2941 100%) !important;
}

.tp-final-cta,
.tp-catalog-mini-cta,
.tp-home-selector__footer {
  background: linear-gradient(135deg, #18233a 0%, #23345a 100%) !important;
}

.tp-breadcrumbs,
.tp-breadcrumbs a,
.tp-page p,
.tp-page li {
  color: var(--tp-ink-soft);
}

@media (max-width: 680px) {
  .tp-home-hero__content h1,
  .tp-service-hero h1,
  .tp-catalog-hero--new h1,
  .tp-category-hero--new h1 {
    font-size: 38px;
  }
}
