:root {
  --color-secondary: #0f172a;
  --color-accent: #fcaf3b;
  --color-title: #121212;
  --color-text: #2b2b2b;
  --bg-1: #f7f6f4;
  --bg-2: #f3f1ee;
  --bg-3: #fdf4e6;
  --bg-4: rgba(252, 175, 59, 0.15);
  --color-white: #ffffff;
}

.pt-page,
.pt-page *,
.pt-header,
.pt-header *,
.pt-footer,
.pt-footer *,
.pt-popup,
.pt-popup * {
  box-sizing: border-box;
}

.pt-page {
  font-family: Montserrat, Arial, sans-serif;
  color: var(--color-text);
  background: linear-gradient(180deg, var(--bg-1), var(--bg-2));
}

.pt-landing-page {
  margin: 0;
  font-family: Montserrat, Arial, sans-serif;
  background: linear-gradient(180deg, var(--bg-1), var(--bg-2));
}

.pt-page [id],
.pt-footer [id] {
  scroll-margin-top: 110px;
}

.pt-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(247, 246, 244, 0.9);
  backdrop-filter: blur(16px);
}

.pt-header__inner {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 84px;
}

.pt-header__brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--color-title);
  text-decoration: none;
}

.pt-header__logo {
  font-size: 23px;
  font-weight: 800;
  line-height: 1;
}

.pt-header__logo-img {
  display: block;
  width: min(196px, 100%);
  height: auto;
}

.pt-header__logo--text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.pt-header__tagline {
  color: rgba(43, 43, 43, 0.72);
  font-size: 12px;
  line-height: 1.35;
}

.pt-header__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.pt-header__nav a {
  color: var(--color-title);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.pt-header__nav a:hover {
  color: #a86400;
}

.pt-header__cta {
  min-height: 48px;
  padding: 12px 20px;
  white-space: nowrap;
}

.pt-header__burger,
.pt-mobile-menu {
  display: none;
}

.pt-container {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.pt-section,
.pt-final {
  padding: 110px 0;
}

.pt-bg-light-grid,
.pt-bg-dark-grid,
.pt-bg-system-dark {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.pt-bg-light-grid {
  background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 100%);
}

.pt-bg-light-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 82% 18%, rgba(252, 175, 59, 0.12), transparent 40%),
    linear-gradient(rgba(15, 23, 42, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.018) 1px, transparent 1px);
  background-size: 100% 100%, 52px 52px, 52px 52px;
}

.pt-bg-dark-grid,
.pt-bg-system-dark {
  background: var(--color-secondary);
}

.pt-bg-dark-grid::before,
.pt-bg-system-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 80% 20%, rgba(252, 175, 59, 0.16), transparent 40%),
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 100% 100%, 48px 48px, 48px 48px;
}

.pt-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 22px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--bg-4);
  color: var(--color-title);
  font-size: 14px;
  font-weight: 800;
}

.pt-label--dark {
  color: var(--color-accent);
  background: rgba(252, 175, 59, 0.14);
}

.pt-label span:first-child {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 5px rgba(252, 175, 59, 0.18);
}

.pt-section__head {
  max-width: 860px;
  margin-bottom: 52px;
}

.pt-section__head--dark h2,
.pt-section__head--dark p {
  color: #fff;
}

.pt-bg-dark-grid .pt-section__head h2,
.pt-bg-dark-grid .pt-section__head h3,
.pt-bg-dark-grid .pt-final h2,
.pt-bg-dark-grid .pt-why__main h3,
.pt-bg-dark-grid .pt-why__side h3,
.pt-bg-dark-grid .pt-system h3 {
  color: #fff;
}

.pt-bg-dark-grid .pt-section__head p,
.pt-bg-dark-grid .pt-final p,
.pt-bg-dark-grid .pt-why__main p,
.pt-bg-dark-grid .pt-why__side p,
.pt-bg-dark-grid .pt-system p,
.pt-bg-dark-grid .pt-system li {
  color: rgba(255, 255, 255, 0.78);
}

.pt-bg-light-grid .pt-section__head h2,
.pt-bg-light-grid .pt-section__head h3,
.pt-bg-light-grid .pt-case__meta h3,
.pt-expert-section h2,
.pt-expert-section h3 {
  color: var(--color-title);
}

.pt-bg-light-grid .pt-section__head p,
.pt-bg-light-grid .pt-card p,
.pt-bg-light-grid .pt-price-card p,
.pt-bg-light-grid .pt-case p,
.pt-expert-section p {
  color: rgba(43, 43, 43, 0.8);
}

.pt-section__head h2,
.pt-final h2,
.pt-expert h2 {
  margin: 0 0 18px;
  color: var(--color-title);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.06;
  letter-spacing: 0;
}

.pt-section__head p,
.pt-final p {
  margin: 0;
  color: rgba(43, 43, 43, 0.76);
  font-size: 20px;
  line-height: 1.6;
}

.pt-section__head--dark p {
  color: rgba(255, 255, 255, 0.72);
}

.pt-hero {
  padding: 118px 0 130px;
  background: linear-gradient(180deg, var(--bg-1), var(--bg-2));
}

.pt-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 60px;
  align-items: center;
}

.pt-hero h1 {
  margin: 0 0 24px;
  font-size: clamp(40px, 5.6vw, 62px);
  line-height: 1.04;
  letter-spacing: 0;
  color: var(--color-title);
  text-wrap: balance;
}

.pt-hero__subtitle {
  max-width: 760px;
  font-size: 21px;
  line-height: 1.6;
  color: var(--color-text);
}

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

.pt-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 600;
}

.pt-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
}

.pt-hero__cta {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}

.pt-hero__cta p {
  max-width: 380px;
  margin: 0;
  font-weight: 600;
  line-height: 1.55;
}

.pt-btn,
.pt-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 16px 28px;
  border-radius: 12px;
  background: var(--color-accent);
  color: var(--color-title);
  text-decoration: none;
  font-weight: 800;
  transition: 0.2s ease;
}

.pt-btn:hover,
.pt-button:hover {
  transform: translateY(-2px);
  background: var(--color-title);
  color: #fff;
}

.pt-hero__visual {
  min-height: 420px;
  border-radius: 34px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
}

.pt-hero__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pt-hero__card {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(10px);
}

.pt-hero__card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
}

.pt-cards {
  display: grid;
  gap: 24px;
}

.pt-cards--2 {
  grid-template-columns: repeat(2, 1fr);
}

.pt-cards--3 {
  grid-template-columns: repeat(3, 1fr);
}

.pt-cards--4 {
  grid-template-columns: repeat(4, 1fr);
}

.pt-audience-cards {
  align-items: stretch;
}

.pt-audience-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px 26px 22px;
  border-radius: 28px;
  border: 1px solid #f5b24a;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 202, 112, 0.22), transparent 42%),
    linear-gradient(180deg, #fff5e7 0%, #fffaf3 34%, #ffffff 100%);
  box-shadow:
    0 18px 44px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.pt-audience-card h3 {
  margin-bottom: 14px;
  font-size: 28px;
  line-height: 1.16;
  min-height: 2.4em;
  font-weight: 800;
  color: #111827;
}

.pt-audience-card__text {
  margin: 0 0 18px !important;
  min-height: 5.1em;
  font-size: 17px !important;
  line-height: 1.55 !important;
  color: rgba(31, 41, 55, 0.88) !important;
}

.pt-audience-card__list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
  min-height: 9.6em;
}

.pt-audience-card__list li {
  position: relative;
  padding-left: 24px;
  font-size: 16px;
  line-height: 1.45;
  color: rgba(31, 41, 55, 0.92);
}

.pt-audience-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(252, 175, 59, 0.16);
}

.pt-audience-card__footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 148px;
  padding-top: 18px;
  border-top: 1px solid rgba(245, 178, 74, 0.32);
}

.pt-audience-card__btn {
  width: 100%;
  min-height: 58px;
  margin-bottom: 14px;
  padding: 14px 18px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  background: linear-gradient(180deg, #ffbc4c 0%, #f9ab35 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.pt-audience-card__footer p {
  margin: 0;
  max-width: 28ch;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(55, 65, 81, 0.82);
}

.pt-audience-note {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding: 16px 20px;
  border-radius: 999px;
  background: rgba(252, 175, 59, 0.14);
  color: var(--color-title);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}

.pt-audience-note span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
  flex: 0 0 10px;
}

.pt-page .pt-card:not(.pt-audience-card),
.pt-page .pt-problem-card,
.pt-page .pt-price-card,
.pt-page .pt-case,
.pt-page .pt-dark-card {
  padding: 30px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.07);
  transition: 0.25s ease;
}

.pt-page .pt-card:not(.pt-audience-card):hover,
.pt-page .pt-problem-card:hover,
.pt-page .pt-price-card:hover,
.pt-page .pt-case:hover,
.pt-page .pt-dark-card:hover,
.pt-page .pt-step:hover {
  transform: translateY(-5px);
}

.pt-page .pt-card--accent {
  background: linear-gradient(180deg, #fff, var(--bg-3));
  border-color: rgba(252, 175, 59, 0.3);
}

.pt-page .pt-card h3,
.pt-page .pt-problem-card h3,
.pt-page .pt-price-card h3,
.pt-page .pt-dark-card h3 {
  margin: 0 0 14px;
  font-size: 26px;
  line-height: 1.24;
  color: var(--color-title);
  font-weight: 800;
}

.pt-page .pt-card p,
.pt-page .pt-problem-card p,
.pt-page .pt-price-card p,
.pt-page .pt-dark-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(43, 43, 43, 0.78);
}

.pt-chip {
  display: inline-flex;
  margin-top: 18px;
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--bg-3);
  color: var(--color-title);
  font-weight: 700;
  font-size: 14px;
}

.pt-solution__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
  gap: 28px;
}

.pt-steps {
  display: grid;
  gap: 18px;
}

.pt-step {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 20px;
  padding: 26px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.07);
  transition: 0.25s ease;
}

.pt-step__num {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 22px;
  background: var(--bg-3);
  color: var(--color-title);
  font-weight: 800;
  font-size: 22px;
}

.pt-page .pt-step h3,
.pt-page .pt-system h3 {
  margin: 0 0 10px;
  color: var(--color-title);
  font-size: 24px;
  font-weight: 800;
}

.pt-step p,
.pt-system p,
.pt-system li {
  margin: 0;
  color: rgba(43, 43, 43, 0.78);
  font-size: 16px;
  line-height: 1.6;
}

.pt-system {
  padding: 34px;
  border-radius: 28px;
  color: #fff;
}

.pt-system h3 {
  color: #fff;
  font-size: 34px;
}

.pt-system p,
.pt-system li {
  color: rgba(255, 255, 255, 0.76);
}

.pt-system ul {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding-left: 20px;
}

.pt-why__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
}

.pt-why__main,
.pt-why__side article {
  padding: 34px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pt-page .pt-why__main h3,
.pt-page .pt-why__side h3 {
  color: #fff;
  font-weight: 800;
}

.pt-why__main p,
.pt-why__side p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

.pt-why__side {
  display: grid;
  gap: 18px;
}

.pt-cases {
  display: grid;
  gap: 26px;
}

.pt-case {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
}

.pt-case__meta span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--bg-3);
  font-size: 13px;
  font-weight: 700;
}

.pt-page .pt-case__meta h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 800;
}

.pt-case__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.pt-case__cols > div {
  padding: 18px;
  border-radius: 18px;
  background: var(--bg-1);
}

.pt-case__cols strong {
  display: block;
  margin-bottom: 10px;
  color: var(--color-title);
}

.pt-case__cols p {
  margin: 0;
  line-height: 1.55;
}

.pt-case__result {
  background: var(--bg-3) !important;
}

.pt-case__metric {
  margin: 10px 0 8px;
  color: var(--color-title);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 0.95;
  font-weight: 800;
}

.pt-expert-section {
  background: linear-gradient(180deg, var(--bg-1), var(--bg-2));
}

.pt-expert {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 56px;
  align-items: center;
}

.pt-expert p {
  font-size: 17px;
  line-height: 1.75;
}

.pt-expert blockquote {
  margin: 32px 0 0;
  padding: 28px;
  border-radius: 24px;
  background: var(--color-secondary);
  color: #fff;
  font-weight: 700;
  line-height: 1.6;
}

.pt-expert__photo {
  position: relative;
}

.pt-expert__photo img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.16);
}

.pt-expert__badge {
  position: absolute;
  left: -18px;
  bottom: 34px;
  max-width: 260px;
  padding: 18px 20px;
  border-radius: 20px;
  background: var(--color-secondary);
  color: #fff;
  font-weight: 700;
}

.pt-dark-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.pt-page .pt-dark-card h3 {
  color: #fff;
}

.pt-page .pt-dark-card p {
  color: rgba(255, 255, 255, 0.72);
}

.pt-page h3 {
  letter-spacing: 0;
}

.pt-page .pt-card h3,
.pt-page .pt-problem-card h3,
.pt-page .pt-price-card h3,
.pt-page .pt-dark-card h3,
.pt-page .pt-step h3,
.pt-page .pt-system h3,
.pt-page .pt-why__main h3,
.pt-page .pt-why__side h3,
.pt-page .pt-case__meta h3,
.pt-page .pt-audience-card h3 {
  font-weight: 800 !important;
}

.pt-page .pt-audience-card h3 {
  font-size: 28px !important;
  line-height: 1.16 !important;
}

.pt-price {
  margin: 18px 0;
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
  color: var(--color-title);
}

.pt-final {
  text-align: center;
  color: #fff;
}

.pt-final h2 {
  max-width: 860px;
  margin: 0 auto 20px;
  color: #fff;
}

.pt-final p {
  max-width: 720px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.72);
}

.pt-footer {
  padding: 28px 0 22px;
  background: #0b1220;
  color: rgba(255, 255, 255, 0.72);
}

.pt-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: start;
}

.pt-footer__brand strong {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-size: 22px;
  line-height: 1.1;
}

.pt-footer__logo-img {
  display: block;
  width: min(210px, 100%);
  height: auto;
  margin-bottom: 12px;
}

.pt-footer__logo-link {
  display: inline-block;
  max-width: 100%;
  color: inherit;
  text-decoration: none;
}

.pt-footer__brand p,
.pt-footer__bottom span {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.pt-footer__contacts {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.pt-footer__contacts a {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.pt-footer__contacts a:last-child {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

.pt-footer__bottom {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1100px) {
  .pt-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .pt-header__brand {
    grid-column: 1;
    grid-row: 1;
  }

  .pt-header__cta {
    grid-column: 2;
    grid-row: 1;
  }

  .pt-header__nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    padding-bottom: 8px;
  }

  .pt-cards--4,
  .pt-case__cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .pt-section,
  .pt-final,
  .pt-hero {
    padding: 72px 0;
  }

  .pt-hero {
    padding-top: 56px;
  }

  .pt-hero__grid,
  .pt-solution__grid,
  .pt-why__grid,
  .pt-case,
  .pt-expert {
    grid-template-columns: 1fr;
  }

  .pt-cards--3,
  .pt-cards--2 {
    grid-template-columns: 1fr;
  }

  .pt-header__inner {
    min-height: 74px;
  }

  .pt-header__nav {
    gap: 14px 18px;
  }

  .pt-header__nav a {
    font-size: 13px;
  }

  .pt-section__head h2,
  .pt-final h2,
  .pt-expert h2 {
    font-size: clamp(30px, 4.8vw, 44px);
    line-height: 1.1;
  }

  .pt-hero h1 {
    font-size: clamp(36px, 6vw, 52px);
  }

  .pt-hero__visual {
    min-height: 300px;
  }

  .pt-expert__photo {
    max-width: 560px;
  }

  .pt-case__meta h3,
  .pt-card h3,
  .pt-problem-card h3,
  .pt-price-card h3,
  .pt-dark-card h3,
  .pt-step h3,
  .pt-system h3 {
    font-size: 24px;
  }

  .pt-audience-card h3 {
    font-size: 26px;
    min-height: 0;
  }

  .pt-audience-card__text,
  .pt-audience-card__list {
    min-height: 0;
  }

  .pt-audience-card__footer {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .pt-container {
    width: min(100% - 32px, 1240px);
  }

  .pt-header {
    position: relative;
  }

  .pt-header__inner {
    position: relative;
    grid-template-columns: minmax(0, 1fr) auto 42px;
    gap: 8px;
    padding: 12px 0;
    min-height: 0;
  }

  .pt-header__brand {
    grid-column: 1;
    grid-row: 1;
    max-width: 122px;
    min-width: 0;
  }

  .pt-header__nav {
    display: none;
  }

  .pt-header__tagline {
    display: none;
  }

  .pt-header__logo {
    font-size: 21px;
  }

  .pt-header__logo-img {
    width: min(122px, 100%);
  }

  .pt-header__cta {
    grid-column: 2;
    grid-row: 1;
    width: fit-content;
    height: 40px;
    min-height: 40px;
    padding: 9px 11px;
    border-radius: 10px;
    font-size: 11px;
    line-height: 1.1;
    justify-self: end;
    align-self: center;
  }

  .pt-header__burger {
    grid-column: 3;
    grid-row: 1;
    display: inline-flex;
    width: 42px;
    height: 40px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 10px;
    background: #fff;
    color: var(--color-title);
    cursor: pointer;
    justify-self: end;
    align-self: center;
  }

  .pt-header__burger span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: 0.2s ease;
  }

  .pt-header__burger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .pt-header__burger.is-open span:nth-child(2) {
    opacity: 0;
  }

  .pt-header__burger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .pt-mobile-menu {
    grid-column: 1 / -1;
    grid-row: 2;
    display: none;
    margin-top: 10px;
    padding: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
  }

  .pt-mobile-menu.is-open {
    display: grid;
    gap: 18px;
  }

  .pt-mobile-menu__nav {
    display: grid;
    gap: 12px;
  }

  .pt-mobile-menu__nav a,
  .pt-mobile-menu__phone {
    color: var(--color-title);
    font-size: 15px;
    line-height: 1.25;
    font-weight: 800;
    text-decoration: none;
  }

  .pt-mobile-menu__phone {
    display: inline-flex;
    width: fit-content;
    padding-top: 4px;
  }

  .pt-mobile-menu__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .pt-mobile-menu__socials .pt-social-link {
    background: rgba(15, 23, 42, 0.08);
    color: var(--color-title);
  }

  .pt-section,
  .pt-final,
  .pt-hero {
    padding: 56px 0;
  }

  .pt-hero {
    padding-top: 28px;
  }

  .pt-section__head h2,
  .pt-final h2,
  .pt-expert h2 {
    font-size: 28px;
    line-height: 1.12;
  }

  .pt-hero h1 {
    font-size: 31px;
    line-height: 1.08;
  }

  .pt-hero__subtitle,
  .pt-section__head p {
    font-size: 16px;
    line-height: 1.55;
  }

  .pt-hero__cta {
    gap: 16px;
  }

  .pt-hero__cta p {
    max-width: none;
    font-size: 15px;
    line-height: 1.5;
  }

  .pt-label {
    margin-bottom: 16px;
    padding: 9px 14px;
    font-size: 12px;
  }

  .pt-list {
    gap: 10px;
    margin: 22px 0;
  }

  .pt-list li {
    padding-left: 24px;
    font-size: 15px;
    line-height: 1.45;
  }

  .pt-step {
    grid-template-columns: 1fr;
  }

  .pt-cards--4,
  .pt-case__cols {
    grid-template-columns: 1fr;
  }

  .pt-card,
  .pt-problem-card,
  .pt-price-card,
  .pt-case,
  .pt-dark-card,
  .pt-why__main,
  .pt-why__side article,
  .pt-system {
    padding: 24px;
    border-radius: 22px;
  }

  .pt-case__meta h3 {
    font-size: 22px;
  }

  .pt-case__metric {
    font-size: 34px;
  }

  .pt-price {
    font-size: 28px;
  }

  .pt-hero__visual {
    min-height: 240px;
    border-radius: 24px;
  }

  .pt-hero__card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 18px;
    border-radius: 18px;
  }

  .pt-hero__card strong {
    font-size: 18px;
  }

  .pt-chip {
    font-size: 12px;
    line-height: 1.35;
  }

  .pt-audience-card h3 {
    font-size: 22px;
  }

  .pt-audience-card__text {
    font-size: 16px !important;
    min-height: 0;
  }

  .pt-audience-card__list {
    gap: 12px;
    margin-bottom: 20px;
    min-height: 0;
  }

  .pt-audience-card__list li {
    font-size: 15px;
  }

  .pt-audience-card__btn {
    min-height: 54px;
    font-size: 14px;
  }

  .pt-audience-card__footer {
    min-height: 0;
  }

  .pt-audience-note {
    display: flex;
    align-items: flex-start;
    border-radius: 20px;
    padding: 14px 16px;
    font-size: 14px;
  }

  .pt-expert__badge {
    position: static;
    margin-top: 16px;
  }

  .pt-footer {
    padding: 24px 0 18px;
  }

  .pt-footer__inner {
    grid-template-columns: 1fr;
  }

  .pt-footer__contacts {
    justify-items: start;
  }

  .pt-btn,
  .pt-button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .pt-container {
    width: min(100% - 24px, 1240px);
  }

  .pt-section,
  .pt-final,
  .pt-hero {
    padding: 48px 0;
  }

  .pt-hero {
    padding-top: 24px;
  }

  .pt-hero h1 {
    font-size: 28px;
  }

  .pt-section__head h2,
  .pt-final h2,
  .pt-expert h2 {
    font-size: 25px;
  }

  .pt-hero__subtitle,
  .pt-section__head p,
  .pt-final p,
  .pt-expert p {
    font-size: 15px;
  }

  .pt-card h3,
  .pt-problem-card h3,
  .pt-price-card h3,
  .pt-dark-card h3,
  .pt-step h3,
  .pt-system h3,
  .pt-why__main h3,
  .pt-why__side h3 {
    font-size: 20px;
  }

  .pt-step__num {
    width: 60px;
    height: 60px;
    font-size: 18px;
    border-radius: 18px;
  }

  .pt-audience-card h3 {
    font-size: 20px;
  }

  .pt-audience-card__footer p,
  .pt-audience-note {
    font-size: 13px;
  }

  .pt-audience-card {
    padding: 22px 20px 18px;
  }

  .pt-footer__brand strong {
    font-size: 20px;
  }

  .pt-footer__brand p,
  .pt-footer__contacts a,
  .pt-footer__bottom span {
    font-size: 14px;
  }
}

/* Final landing refinements */
.pt-page .pt-section__lead {
  max-width: 820px;
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.7;
}

.pt-page .pt-section__lead p {
  margin: 0 0 14px;
}

.pt-page .pt-section__lead p:last-child {
  margin-bottom: 0;
}

.pt-page .pt-section__lead--light {
  color: rgba(17, 24, 39, 0.82);
}

.pt-page .pt-section__lead--dark {
  color: rgba(255, 255, 255, 0.78);
}

.pt-page .pt-hero__trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 30px;
}

.pt-page .pt-hero__trust-item {
  position: relative;
  min-height: 68px;
  padding: 18px 18px 18px 48px;
  border: 1px solid rgba(252, 175, 59, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--color-title);
}

.pt-page .pt-hero__trust-item::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 18px;
  color: #ce7d08;
  font-size: 18px;
  font-weight: 800;
}

.pt-page .pt-hero__visual {
  min-height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 34px 90px rgba(15, 23, 42, 0.16);
}

.pt-page .pt-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 28%, rgba(15, 23, 42, 0.46) 100%);
}

.pt-page .pt-hero__card {
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
}

.pt-page .pt-hero__card span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.pt-page .pt-audience-card--primary {
  border-color: #ee9f25;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 187, 72, 0.3), transparent 42%),
    linear-gradient(180deg, #fff0d8 0%, #fff7ea 38%, #ffffff 100%);
  box-shadow:
    0 22px 54px rgba(213, 132, 10, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.pt-page .pt-problem-card {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.16);
}

.pt-page .pt-problem-card p {
  color: rgba(17, 24, 39, 0.78);
}

.pt-page .pt-chip {
  background: rgba(252, 175, 59, 0.18);
}

.pt-page .pt-step {
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.pt-page .pt-system {
  background:
    radial-gradient(circle at 78% 18%, rgba(252, 175, 59, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(10, 15, 27, 0.98));
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
}

.pt-page .pt-why__main {
  background:
    radial-gradient(circle at 18% 10%, rgba(252, 175, 59, 0.18), transparent 36%),
    rgba(255, 255, 255, 0.08);
}

.pt-page .pt-why__side article {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
}

.pt-page .pt-case {
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.pt-page .pt-case--featured {
  background:
    radial-gradient(circle at 78% 14%, rgba(255, 190, 85, 0.2), transparent 28%),
    #fff;
  border-color: rgba(234, 161, 51, 0.34);
  box-shadow: 0 22px 56px rgba(15, 23, 42, 0.09);
}

.pt-page .pt-case__result p {
  font-size: 15px;
  line-height: 1.55;
}

.pt-page .pt-case__metric {
  margin: 12px 0 10px;
  font-size: clamp(42px, 6vw, 74px);
  letter-spacing: 0;
}

.pt-page .pt-expert {
  align-items: start;
}

.pt-page .pt-expert__photo-wrap {
  display: grid;
  gap: 18px;
}

.pt-page .pt-expert__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pt-page .pt-expert__stat {
  padding: 18px 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.05);
  text-align: center;
}

.pt-page .pt-expert__stat strong {
  display: block;
  margin-bottom: 6px;
  color: var(--color-title);
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
}

.pt-page .pt-expert__stat span {
  display: block;
  color: rgba(43, 43, 43, 0.78);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
}

.pt-page .pt-seo-grid {
  grid-template-columns: repeat(3, 1fr);
}

.pt-page #seo .pt-section__head {
  max-width: 980px;
}

.pt-page #seo .pt-section__head h2 {
  max-width: 900px;
}

.pt-page #seo .pt-dark-card {
  min-height: 100%;
  border-color: rgba(255, 190, 89, 0.18);
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 190, 89, 0.14), transparent 28%),
    rgba(255, 255, 255, 0.05);
}

.pt-page .pt-seo-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 32px;
  padding: 28px 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.06);
}

.pt-page .pt-seo-cta p {
  margin: 0;
  color: #fff;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 700;
}

.pt-page .pt-btn--light {
  background: #fff;
  color: var(--color-title);
}

.pt-page .pt-roadmap-section {
  position: relative;
}

.pt-page .pt-roadmap {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
}

.pt-page .pt-roadmap__step {
  min-height: 100%;
  padding: 26px 22px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #fff8ee);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.06);
}

.pt-page .pt-roadmap__kicker {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(252, 175, 59, 0.16);
  color: #8d5300;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.pt-page .pt-roadmap__step h3 {
  margin: 0 0 10px;
  color: var(--color-title);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
}

.pt-page .pt-roadmap__step p {
  margin: 0;
  color: rgba(43, 43, 43, 0.78);
  line-height: 1.55;
}

.pt-page .pt-roadmap__arrow {
  display: grid;
  place-items: center;
  color: #c37907;
  font-size: 30px;
  font-weight: 800;
}

.pt-page .pt-pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.pt-page .pt-price-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.pt-page .pt-price-card--primary {
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 189, 79, 0.2), transparent 36%),
    linear-gradient(180deg, #fff3df, #ffffff);
}

.pt-page .pt-price-card__meta {
  margin: -4px 0 16px;
  color: rgba(107, 114, 128, 0.92);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.pt-page .pt-price-card__btn {
  width: 100%;
  margin-top: auto;
}

.pt-page .pt-price-card--growth {
  margin-top: 24px;
  padding: 34px;
  border: 1px solid rgba(234, 161, 51, 0.3);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 191, 96, 0.18), transparent 28%),
    linear-gradient(180deg, #fff8ec 0%, #ffffff 100%);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.07);
}

.pt-page .pt-price-card__growth-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 28px;
  align-items: center;
}

.pt-page .pt-price-card__growth-content .pt-label {
  margin-bottom: 18px;
}

.pt-page .pt-price-card__growth-action {
  display: flex;
  justify-content: flex-end;
}

.pt-page .pt-final__checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: left;
}

.pt-page .pt-final__check-item {
  position: relative;
  min-height: 58px;
  padding: 16px 18px 16px 46px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
}

.pt-page .pt-final__check-item::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 16px;
  color: #ffbe59;
  font-size: 18px;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .pt-page .pt-seo-grid,
  .pt-page .pt-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pt-page .pt-roadmap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pt-page .pt-roadmap__arrow {
    display: none;
  }
}

@media (max-width: 991px) {
  .pt-page .pt-hero__trust {
    grid-template-columns: 1fr 1fr;
  }

  .pt-page .pt-expert__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pt-page .pt-seo-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .pt-page .pt-price-card--growth {
    padding: 28px;
  }

  .pt-page .pt-price-card__growth-content {
    grid-template-columns: 1fr;
  }

  .pt-page .pt-price-card__growth-action {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .pt-page .pt-section__lead {
    font-size: 16px;
    line-height: 1.6;
  }

  .pt-page .pt-hero__trust {
    grid-template-columns: 1fr;
    margin: 24px 0 22px;
  }

  .pt-page .pt-hero__trust-item {
    min-height: 0;
    padding: 16px 16px 16px 42px;
    font-size: 14px;
  }

  .pt-page .pt-hero__visual {
    min-height: 360px;
  }

  .pt-page .pt-expert__stats,
  .pt-page .pt-seo-grid,
  .pt-page .pt-pricing-grid,
  .pt-page .pt-final__checklist,
  .pt-page .pt-roadmap {
    grid-template-columns: 1fr;
  }

  .pt-page .pt-price-card--growth {
    padding: 24px;
    border-radius: 24px;
  }

  .pt-page .pt-roadmap__step h3 {
    font-size: 22px;
  }

  .pt-page .pt-seo-cta p {
    font-size: 20px;
  }

  .pt-page .pt-case__metric {
    font-size: 42px;
  }
}

@media (max-width: 420px) {
  .pt-page .pt-hero h1 {
    font-size: 36px;
    line-height: 1.08;
  }

  .pt-page .pt-section__head h2,
  .pt-page .pt-final h2,
  .pt-page .pt-expert h2 {
    font-size: 30px;
    line-height: 1.12;
  }

  .pt-page .pt-seo-cta,
  .pt-page .pt-final__check-item {
    padding-left: 18px;
  }

  .pt-page .pt-final__check-item::before {
    position: static;
    display: inline-block;
    margin-right: 10px;
  }
}

/* Final visual pass after PDF review */
.pt-page .pt-bg-dark-grid h2,
.pt-page .pt-bg-dark-grid h3,
.pt-page .pt-bg-dark-grid h4,
.pt-page .pt-bg-system-dark h2,
.pt-page .pt-bg-system-dark h3,
.pt-page .pt-bg-system-dark h4,
.pt-page .pt-dark-card h3,
.pt-page .pt-system h3,
.pt-page .pt-final h2,
.pt-page .pt-final h3 {
  color: #fff !important;
}

.pt-page .pt-bg-dark-grid p,
.pt-page .pt-bg-dark-grid li,
.pt-page .pt-bg-dark-grid .pt-section__lead,
.pt-page .pt-bg-system-dark p,
.pt-page .pt-bg-system-dark li,
.pt-page .pt-dark-card p,
.pt-page .pt-system p,
.pt-page .pt-system li,
.pt-page .pt-final p {
  color: rgba(255, 255, 255, 0.72) !important;
}

.pt-page .pt-bg-dark-grid .pt-label--dark,
.pt-page .pt-bg-system-dark .pt-label--dark,
.pt-page .pt-case__status,
.pt-page .pt-hero__card-kicker {
  color: #fcaf3b;
}

.pt-page .pt-bg-dark-grid .pt-chip,
.pt-page .pt-bg-system-dark .pt-chip {
  color: rgba(255, 255, 255, 0.82);
}

.pt-page .pt-hero__card {
  display: grid;
  gap: 10px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(180deg, rgba(12, 19, 31, 0.86), rgba(12, 19, 31, 0.72));
  backdrop-filter: blur(14px);
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.28);
}

.pt-page .pt-hero__card-kicker {
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pt-page .pt-hero__card strong {
  color: #fff;
}

.pt-page .pt-audience-cards {
  align-items: stretch;
}

.pt-page .pt-audience-card {
  min-height: 100%;
  border-width: 1px;
  border-style: solid;
  border-color: #f5b24a;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 202, 112, 0.22), transparent 42%),
    linear-gradient(180deg, #fff5e7 0%, #fffaf3 34%, #ffffff 100%);
  box-shadow:
    0 18px 44px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.pt-page .pt-audience-card h3 {
  color: #121212 !important;
  font-size: clamp(32px, 3.1vw, 52px);
  line-height: 1.02;
  font-weight: 900 !important;
}

.pt-page .pt-audience-card__text,
.pt-page .pt-audience-card__list li,
.pt-page .pt-audience-card__footer p {
  color: rgba(43, 43, 43, 0.82);
}

.pt-page .pt-audience-card__footer {
  margin-top: auto;
  display: grid;
  gap: 14px;
}

.pt-page .pt-audience-card__btn {
  min-height: 58px;
  border-radius: 16px;
}

.pt-page .pt-system {
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 26px 62px rgba(15, 23, 42, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pt-page .pt-system li::marker {
  color: #fcaf3b;
}

.pt-page .pt-why__grid--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.pt-page .pt-why__card {
  min-height: 100%;
  padding: 28px 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background:
    radial-gradient(circle at 16% 10%, rgba(252, 175, 59, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.pt-page .pt-why__card h3 {
  margin-bottom: 12px;
  color: #fff !important;
}

.pt-page .pt-why__card p {
  margin: 0;
}

.pt-page .pt-why__card--primary {
  background:
    radial-gradient(circle at 16% 10%, rgba(252, 175, 59, 0.22), transparent 36%),
    rgba(255, 255, 255, 0.08);
}

.pt-page .pt-case__meta {
  display: grid;
  gap: 10px;
}

.pt-page .pt-case__status {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(252, 175, 59, 0.28);
  border-radius: 999px;
  background: rgba(252, 175, 59, 0.1);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
}

.pt-page .pt-case__cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 26px;
}

.pt-page .pt-case__cols strong {
  display: inline-block;
  margin-bottom: 10px;
}

.pt-page .pt-case__result p {
  max-width: 240px;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 700;
}

.pt-page .pt-case--featured .pt-case__metric {
  font-size: clamp(56px, 7vw, 92px);
  line-height: 0.92;
}

.pt-page .pt-expert blockquote {
  margin-top: 28px;
  line-height: 1.6;
}

.pt-page .pt-expert__stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pt-page .pt-expert__stat--wide {
  grid-column: 1 / -1;
}

.pt-page .pt-seo-grid {
  align-items: stretch;
}

.pt-page .pt-seo-note {
  margin-top: 28px;
  padding: 28px 30px;
  border: 1px solid rgba(252, 175, 59, 0.22);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 12%, rgba(252, 175, 59, 0.12), transparent 26%),
    rgba(255, 255, 255, 0.04);
}

.pt-page .pt-seo-note p {
  margin: 0;
  color: #fff;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 800;
}

.pt-page .pt-roadmap-section {
  padding-top: 82px;
  padding-bottom: 82px;
}

.pt-page .pt-roadmap {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.pt-page .pt-roadmap__step {
  min-height: 220px;
}

.pt-page .pt-roadmap__arrow {
  display: none !important;
}

.pt-page .pt-price-card__growth-content .pt-label {
  text-decoration: none;
}

.pt-page .pt-final__checklist {
  max-width: 860px;
}

@media (max-width: 1100px) {
  .pt-page .pt-why__grid--compact,
  .pt-page .pt-case__cols,
  .pt-page .pt-roadmap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .pt-page .pt-audience-card h3 {
    font-size: 28px;
    line-height: 1.08;
  }

  .pt-page .pt-seo-note p {
    font-size: 20px;
  }
}

@media (max-width: 640px) {
  .pt-page .pt-why__grid--compact,
  .pt-page .pt-case__cols,
  .pt-page .pt-expert__stats,
  .pt-page .pt-roadmap {
    grid-template-columns: 1fr;
  }

  .pt-page .pt-audience-card__btn,
  .pt-page .pt-price-card__btn,
  .pt-page .pt-price-card__growth-action .pt-btn {
    width: 100%;
  }

  .pt-page .pt-seo-note,
  .pt-page .pt-seo-cta {
    padding: 22px 20px;
  }

  .pt-page .pt-roadmap-section {
    padding-top: 68px;
    padding-bottom: 68px;
  }
}

/* Focused cleanup after visual review */
.pt-page .pt-hero__cta {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: nowrap;
}

.pt-page .pt-hero__cta p {
  margin: 0;
  max-width: 520px;
  flex: 0 1 520px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(43, 43, 43, 0.78);
  font-weight: 600;
}

.pt-page .pt-bg-dark-grid .pt-problem-card {
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-text);
}

.pt-page .pt-bg-dark-grid .pt-problem-card h3 {
  color: var(--color-title) !important;
}

.pt-page .pt-bg-dark-grid .pt-problem-card p {
  color: rgba(43, 43, 43, 0.74) !important;
}

.pt-page .pt-bg-dark-grid .pt-problem-card .pt-chip {
  background: var(--bg-3);
  color: var(--color-title);
}

.pt-page .pt-case__meta > span {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--bg-3);
  color: var(--color-title);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 700;
  min-height: 0;
  align-items: center;
}

.pt-page .pt-case__meta > span::before,
.pt-page .pt-case__meta > span::after {
  display: none;
}

.pt-page .pt-case__meta {
  justify-items: start;
}

.pt-page .pt-expert__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.pt-page .pt-expert__stat {
  min-height: 86px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
  text-align: center;
}

.pt-page .pt-expert__stat--wide {
  grid-column: auto;
}

.pt-page .pt-expert__stat span {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(43, 43, 43, 0.68);
}

.pt-page .pt-growth .pt-container,
.pt-page .pt-growth__container,
.pt-page .pt-pricing .pt-container {
  max-width: 1240px;
}

.pt-page .pt-growth {
  padding-top: 84px;
  padding-bottom: 84px;
}

.pt-page .pt-growth .pt-roadmap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.pt-page .pt-growth .pt-roadmap__step {
  min-height: 232px;
}

.pt-page .pt-pricing .pt-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.pt-page .pt-pricing .pt-price-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.pt-page .pt-pricing .pt-price-card .pt-btn {
  margin-top: auto;
}

.pt-diagnostics-section {
  scroll-margin-top: 150px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(253, 244, 230, 0.74)),
    linear-gradient(180deg, var(--bg-1), var(--bg-2));
}

.pt-page .pt-diagnostics-section {
  scroll-margin-top: 150px;
}

.pt-diagnostics-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 42px;
  align-items: stretch;
  padding: 42px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 28px 76px rgba(15, 23, 42, 0.1);
}

.pt-diagnostics-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pt-diagnostics-card__content h2 {
  margin: 0 0 18px;
  color: var(--color-title);
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.08;
  font-weight: 800;
}

.pt-diagnostics-card__content p {
  margin: 0 0 16px;
  color: rgba(43, 43, 43, 0.78);
  font-size: 18px;
  line-height: 1.62;
}

.pt-diagnostics-benefits {
  display: grid;
  gap: 12px;
  width: 100%;
  margin: auto 0 0;
  padding: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  background: rgba(247, 246, 244, 0.72);
  list-style: none;
}

.pt-diagnostics-benefits li {
  position: relative;
  padding-left: 26px;
  color: rgba(43, 43, 43, 0.82);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
}

.pt-diagnostics-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 5px rgba(252, 175, 59, 0.18);
}

.pt-diagnostics-quiz {
  display: grid;
  align-content: start;
  gap: 20px;
  min-height: 620px;
  padding: 30px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 24px;
  background: #fbfaf8;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.pt-diagnostics-quiz__top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.pt-diagnostics-quiz__top span,
.pt-diagnostics-quiz__percent,
.pt-diagnostics-result__label {
  color: #a86400;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
}

.pt-diagnostics-quiz__top strong {
  display: block;
  margin-top: 6px;
  color: var(--color-title);
  font-size: 22px;
  line-height: 1.22;
}

.pt-diagnostics-progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
}

.pt-diagnostics-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-accent), #d98208);
  transition: width 0.25s ease;
}

.pt-diagnostics-quiz__error {
  display: none;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(185, 28, 28, 0.18);
  border-radius: 14px;
  background: rgba(254, 226, 226, 0.72);
  color: #991b1b;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.pt-diagnostics-quiz__error.is-visible {
  display: block;
}

.pt-diagnostics-step {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.pt-diagnostics-step.is-active {
  display: grid;
  gap: 12px;
}

.pt-diagnostics-step legend {
  display: block;
  width: 100%;
  margin: 0 0 8px;
  color: var(--color-title);
  font-size: 24px;
  line-height: 1.24;
  font-weight: 800;
}

.pt-diagnostics-step label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 15px 16px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 16px;
  background: #fff;
  color: var(--color-title);
  font-size: 15px;
  line-height: 1.4;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.pt-diagnostics-step label:hover,
.pt-diagnostics-step label.is-selected {
  border-color: rgba(252, 175, 59, 0.72);
  background: #fffaf2;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.pt-diagnostics-step input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent);
}

.pt-diagnostics-step label > input[type="text"] {
  grid-column: 2;
  width: 100%;
  margin-top: 2px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 12px;
  padding: 11px 12px;
  color: var(--color-title);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
}

.pt-diagnostics-contacts label {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  cursor: default;
}

.pt-diagnostics-contacts label:hover {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.pt-diagnostics-contacts input,
.pt-diagnostics-contacts textarea {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.16);
  border-radius: 12px;
  padding: 13px 14px;
  color: var(--color-title);
  font: inherit;
  font-weight: 500;
  background: #fff;
}

.pt-diagnostics-contacts label > input[type="text"] {
  grid-column: auto;
  margin-top: 0;
  padding: 13px 14px;
  font-size: inherit;
}

.pt-diagnostics-contacts input:focus,
.pt-diagnostics-contacts textarea:focus,
.pt-diagnostics-step label > input[type="text"]:focus {
  border-color: var(--color-accent);
  outline: 3px solid rgba(252, 175, 59, 0.22);
}

.pt-diagnostics-result {
  padding: 24px;
  border: 1px solid rgba(252, 175, 59, 0.34);
  border-radius: 22px;
  background: linear-gradient(180deg, #fffaf2, #ffffff);
}

.pt-diagnostics-result h3 {
  margin: 8px 0 12px;
  color: var(--color-title);
  font-size: 26px;
  line-height: 1.18;
}

.pt-diagnostics-result p,
.pt-diagnostics-result strong {
  margin: 0;
  color: rgba(43, 43, 43, 0.78);
  font-size: 15px;
  line-height: 1.6;
}

.pt-diagnostics-result strong {
  display: block;
  margin-top: 16px;
  color: var(--color-title);
}

.pt-diagnostics-result ul {
  display: grid;
  gap: 9px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.pt-diagnostics-result li {
  position: relative;
  padding-left: 22px;
  color: rgba(43, 43, 43, 0.82);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.pt-diagnostics-result li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}

.pt-diagnostics-quiz__actions {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: auto;
}

.pt-diagnostics-quiz__back {
  min-height: 52px;
  padding: 12px 18px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 14px;
  background: #fff;
  color: var(--color-title);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.pt-diagnostics-quiz__next {
  min-height: 52px;
  border: 0;
  cursor: pointer;
}

.pt-diagnostics-quiz__next {
  grid-column: 3;
}

.pt-diagnostics-quiz.is-single-action .pt-diagnostics-quiz__next {
  grid-column: 1 / -1;
}

.pt-diagnostics-quiz__next:disabled,
.pt-diagnostics-quiz__next[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.48;
  box-shadow: none;
}

.pt-diagnostics-quiz__note {
  margin: 2px 0 0;
  color: rgba(43, 43, 43, 0.7);
  font-size: 12px;
  line-height: 1.45;
}

.pt-diagnostics-quiz__note a {
  color: var(--color-title);
  font-weight: 700;
}

.pt-diagnostics-quiz__trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

@media (max-width: 1100px) {
  .pt-diagnostics-card {
    grid-template-columns: 1fr;
  }

  .pt-diagnostics-benefits {
    margin-top: 12px;
  }
}

@media (max-width: 768px) {
  .pt-page .pt-hero__cta {
    flex-wrap: wrap;
    align-items: stretch;
  }

  .pt-page .pt-hero__cta .pt-btn {
    width: 100%;
  }

  .pt-page .pt-hero__cta p {
    max-width: none;
  }

  .pt-page .pt-growth .pt-roadmap,
  .pt-page .pt-pricing .pt-pricing-grid {
    grid-template-columns: 1fr;
  }

  .pt-diagnostics-card {
    padding: 24px;
    border-radius: 24px;
  }

  .pt-diagnostics-quiz {
    min-height: 0;
    padding: 22px;
  }

  .pt-diagnostics-card__content h2 {
    font-size: 28px;
  }

  .pt-diagnostics-card__content p {
    font-size: 16px;
  }
}

@media (max-width: 390px) {
  .pt-page .pt-expert__stats {
    grid-template-columns: 1fr;
  }

  .pt-diagnostics-card {
    padding: 18px;
    border-radius: 20px;
  }

  .pt-diagnostics-quiz {
    padding: 18px;
    border-radius: 18px;
  }

  .pt-diagnostics-quiz__actions {
    grid-template-columns: 1fr;
  }

  .pt-diagnostics-quiz__back,
  .pt-diagnostics-quiz__next {
    grid-column: 1;
    width: 100%;
  }

  .pt-diagnostics-step legend {
    font-size: 21px;
  }
}

/* Cases block redesign by reference */
.pt-page #cases .pt-section__head {
  max-width: 760px;
  margin-bottom: 34px;
}

.pt-page .pt-cases {
  display: grid;
  gap: 28px;
}

.pt-page .pt-case {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: 28px;
  padding: 30px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 52px rgba(15, 23, 42, 0.05);
}

.pt-page .pt-case--featured {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(234, 161, 51, 0.18);
}

.pt-page .pt-case__meta {
  display: grid;
  align-content: start;
  gap: 16px;
}

.pt-page .pt-case__meta h3 {
  margin: 0;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.02;
  font-weight: 900;
}

.pt-page .pt-case__status {
  display: none;
}

.pt-page .pt-case__cols {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: 18px 28px;
  align-items: start;
}

.pt-page .pt-case__cols > div:nth-child(1),
.pt-page .pt-case__cols > div:nth-child(2) {
  grid-column: 2;
  padding: 18px 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.03);
}

.pt-page .pt-case__cols > div:nth-child(3) {
  grid-column: 2;
  padding: 20px 20px 22px;
  border: 1px solid rgba(245, 178, 74, 0.88);
  border-radius: 24px;
  background:
    radial-gradient(circle at 74% 20%, rgba(255, 196, 96, 0.34), transparent 38%),
    linear-gradient(180deg, #fff7ec 0%, #fff2de 100%);
  box-shadow: 0 18px 36px rgba(232, 158, 47, 0.08);
}

.pt-page .pt-case__cols > div:nth-child(4) {
  grid-column: 1;
  grid-row: 1 / span 3;
  align-self: stretch;
  padding: 6px 0 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.pt-page .pt-case__cols > div:nth-child(4) strong {
  display: block;
  margin-bottom: 16px;
  color: #121212;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pt-page .pt-case__cols > div:nth-child(4) p {
  margin: 0;
  color: rgba(43, 43, 43, 0.78);
  line-height: 1.85;
}

.pt-page .pt-case__cols > div:nth-child(1) strong,
.pt-page .pt-case__cols > div:nth-child(2) strong,
.pt-page .pt-case__result strong {
  color: #f39b1f;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pt-page .pt-case__cols > div:nth-child(1) p,
.pt-page .pt-case__cols > div:nth-child(2) p,
.pt-page .pt-case__result p {
  color: rgba(43, 43, 43, 0.78);
  font-size: 16px;
  line-height: 1.65;
}

.pt-page .pt-case__result {
  display: grid;
  gap: 8px;
}

.pt-page .pt-case__metric {
  margin: 0;
  color: #121212;
  font-size: clamp(42px, 4.6vw, 64px);
  line-height: 0.95;
  font-weight: 900;
}

.pt-page .pt-case--featured .pt-case__metric {
  font-size: clamp(56px, 5vw, 82px);
}

@media (max-width: 1024px) {
  .pt-page .pt-case,
  .pt-page .pt-case__cols {
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .pt-page .pt-case {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .pt-page .pt-case__cols {
    grid-template-columns: 1fr;
  }

  .pt-page .pt-case__cols > div:nth-child(1),
  .pt-page .pt-case__cols > div:nth-child(2),
  .pt-page .pt-case__cols > div:nth-child(3),
  .pt-page .pt-case__cols > div:nth-child(4) {
    grid-column: 1;
    grid-row: auto;
  }

  .pt-page .pt-case__cols > div:nth-child(4) {
    padding-top: 0;
  }
}

/* Cases visual layout refinement */
.pt-page .pt-case {
  grid-template-columns: minmax(320px, 390px) minmax(0, 1fr);
  gap: 28px 28px;
  align-items: start;
}

.pt-page .pt-case__meta {
  grid-column: 1;
  gap: 18px;
}

.pt-page .pt-case__meta h3 {
  max-width: 320px;
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: 0.98;
  font-weight: 900;
}

.pt-page .pt-case__cols {
  display: contents;
}

.pt-page .pt-case__cols > div:nth-child(4) {
  grid-column: 1;
  grid-row: 2 / span 2;
  padding-top: 8px;
}

.pt-page .pt-case__cols > div:nth-child(4) strong {
  margin-bottom: 18px;
  color: #121212;
}

.pt-page .pt-case__cols > div:nth-child(4) p {
  display: grid;
  gap: 14px;
  line-height: 1.7;
}

.pt-page .pt-case__cols > div:nth-child(1) {
  grid-column: 2;
  grid-row: 1;
  padding: 22px 24px 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-bottom: 0;
  border-radius: 26px 26px 0 0;
  background: #fff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.03);
}

.pt-page .pt-case__cols > div:nth-child(2) {
  grid-column: 2;
  grid-row: 2;
  margin-top: -18px;
  padding: 16px 24px 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 0 0 26px 26px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.03);
}

.pt-page .pt-case__cols > div:nth-child(3) {
  grid-column: 2;
  grid-row: 3;
  margin-top: 0;
  min-height: 156px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pt-page .pt-case__result {
  gap: 10px;
}

.pt-page .pt-case__metric {
  font-size: clamp(56px, 5.2vw, 84px);
}

.pt-page .pt-case--featured .pt-case__metric {
  font-size: clamp(68px, 6vw, 96px);
}

@media (max-width: 1024px) {
  .pt-page .pt-case {
    grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
  }

  .pt-page .pt-case__meta h3 {
    max-width: 280px;
    font-size: clamp(30px, 3.6vw, 44px);
  }
}

@media (max-width: 768px) {
  .pt-page .pt-case__cols > div:nth-child(1),
  .pt-page .pt-case__cols > div:nth-child(2),
  .pt-page .pt-case__cols > div:nth-child(3),
  .pt-page .pt-case__cols > div:nth-child(4),
  .pt-page .pt-case__meta {
    grid-column: 1;
    grid-row: auto;
  }

  .pt-page .pt-case__cols > div:nth-child(2) {
    margin-top: -10px;
  }

  .pt-page .pt-case__meta h3 {
    max-width: none;
  }
}

/* Cases final structure */
.pt-page .pt-case {
  display: grid;
  grid-template-columns: minmax(320px, 390px) minmax(0, 1fr);
  gap: 28px;
  padding: 32px 34px;
  border-radius: 34px;
  border: 1px solid rgba(15, 23, 42, 0.05);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.05);
}

.pt-page .pt-case__main {
  display: grid;
  align-content: start;
  gap: 28px;
  min-width: 0;
}

.pt-page .pt-case__meta {
  display: grid;
  gap: 18px;
}

.pt-page .pt-case__meta > span {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 10px 24px;
  border-radius: 999px;
  background: #fff3df;
  color: #2b2b2b;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
}

.pt-page .pt-case__meta h3 {
  max-width: 300px;
  margin: 0;
  color: #121212;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.06;
  font-weight: 900;
}

.pt-page .pt-case__timeline {
  display: grid;
  gap: 14px;
}

.pt-page .pt-case__timeline-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.pt-page .pt-case__timeline-item strong {
  color: #f39b1f;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
}

.pt-page .pt-case__timeline-item span {
  color: rgba(43, 43, 43, 0.78);
  font-size: 16px;
  line-height: 1.55;
}

.pt-page .pt-case__side {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.pt-page .pt-case__panel {
  padding: 22px 22px 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.03);
}

.pt-page .pt-case__detail + .pt-case__detail {
  margin-top: 18px;
}

.pt-page .pt-case__detail strong,
.pt-page .pt-case__result-card strong {
  display: block;
  margin-bottom: 10px;
  color: #f39b1f;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pt-page .pt-case__detail p,
.pt-page .pt-case__result-card p {
  margin: 0;
  color: rgba(43, 43, 43, 0.78);
  font-size: 15px;
  line-height: 1.55;
}

.pt-page .pt-case__result-card {
  min-height: 124px;
  padding: 22px 22px 20px;
  border: 1px solid #f5b24a;
  border-radius: 28px;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 201, 108, 0.45), transparent 34%),
    linear-gradient(180deg, #fff9ef 0%, #fff1dc 100%);
  box-shadow: 0 18px 40px rgba(245, 178, 74, 0.08);
}

.pt-page .pt-case__metric {
  margin: 0 0 10px;
  color: #121212;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1;
  font-weight: 900;
}

.pt-page .pt-case--featured .pt-case__metric {
  font-size: clamp(20px, 1.8vw, 28px);
}

.pt-page .pt-case__status,
.pt-page .pt-case__cols {
  display: none !important;
}

@media (max-width: 1024px) {
  .pt-page .pt-case {
    grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
    padding: 28px;
  }

  .pt-page .pt-case__meta h3 {
    max-width: 260px;
    font-size: clamp(20px, 2vw, 26px);
  }
}

@media (max-width: 768px) {
  .pt-page .pt-case {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 24px;
  }

  .pt-page .pt-case__meta h3 {
    max-width: none;
    font-size: 24px;
  }

  .pt-page .pt-case__metric,
  .pt-page .pt-case--featured .pt-case__metric {
    font-size: 24px;
  }
}

/* Expert stats full-width row */
.pt-page .pt-expert {
  align-items: start;
}

.pt-page .pt-expert__photo-wrap {
  display: block;
}

.pt-page .pt-expert__stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.pt-page .pt-expert__stat,
.pt-page .pt-expert__stat--publications {
  min-height: 126px;
  padding: 24px 18px 20px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pt-page .pt-expert__stat strong,
.pt-page .pt-expert__stat--publications strong {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  color: #121212;
}

.pt-page .pt-expert__stat span,
.pt-page .pt-expert__stat--publications span {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(43, 43, 43, 0.72);
}

.pt-page .pt-expert__stat--wide {
  grid-column: auto;
}

@media (max-width: 991px) {
  .pt-page .pt-expert__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .pt-page .pt-expert__stats {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pt-page .pt-expert__stat,
  .pt-page .pt-expert__stat--publications {
    min-height: 0;
    padding: 20px 16px;
  }
}

.pt-landing-page .pt-page h1,
.pt-landing-page .pt-page h2,
.pt-landing-page .pt-page h3,
.pt-landing-page .pt-final h2,
.pt-landing-page .pt-footer h2,
.pt-landing-page .pt-footer h3 {
  font-weight: 800 !important;
}

.pt-landing-page .pt-page h1 {
  font-size: 42px !important;
  line-height: 1.12;
}

.pt-landing-page .pt-page h2,
.pt-landing-page .pt-final h2 {
  font-size: 32px !important;
  line-height: 1.16;
}

.pt-landing-page .pt-page h3,
.pt-landing-page .pt-footer h3 {
  font-size: 28px !important;
  line-height: 1.2;
}

@media (max-width: 640px) {
  .pt-landing-page .pt-page h1 {
    font-size: 28px !important;
  }

  .pt-landing-page .pt-page h2,
  .pt-landing-page .pt-final h2 {
    font-size: 25px !important;
  }

  .pt-landing-page .pt-page h3,
  .pt-landing-page .pt-footer h3 {
    font-size: 20px !important;
  }
}

.pt-header__cta {
  width: fit-content;
  max-width: 100%;
  height: 48px;
  min-height: 48px;
  justify-self: end;
  align-self: center;
}

.pt-footer__socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  margin: 4px 0;
}

.pt-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: 0.2s ease;
}

.pt-social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.pt-social-link:hover {
  background: var(--color-accent);
  color: var(--color-title);
  transform: translateY(-2px);
}

.pt-popup-open {
  overflow: hidden;
}

.pt-popup {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.pt-popup.is-open {
  display: flex;
}

.pt-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.68);
  backdrop-filter: blur(10px);
}

.pt-popup__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  max-height: min(820px, calc(100vh - 48px));
  overflow: auto;
  padding: 34px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 32px 90px rgba(15, 23, 42, 0.34);
}

.pt-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.08);
  color: var(--color-title);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.pt-popup__head {
  margin-bottom: 22px;
}

.pt-popup__head h2 {
  margin: 0 0 10px;
  color: var(--color-title);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.16;
}

.pt-popup__head p {
  margin: 0;
  color: rgba(43, 43, 43, 0.72);
  font-size: 16px;
  line-height: 1.5;
}

.pt-contact-form {
  display: grid;
  gap: 14px;
}

.pt-contact-form__error {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(185, 28, 28, 0.22);
  border-radius: 12px;
  background: rgba(254, 226, 226, 0.72);
  color: #991b1b;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.pt-contact-form label {
  display: grid;
  gap: 7px;
  color: var(--color-title);
  font-size: 14px;
  font-weight: 700;
}

.pt-contact-form input,
.pt-contact-form textarea {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.16);
  border-radius: 12px;
  padding: 13px 14px;
  color: var(--color-title);
  font: inherit;
  font-weight: 500;
  background: #fff;
}

.pt-contact-form input:focus,
.pt-contact-form textarea:focus {
  border-color: var(--color-accent);
  outline: 3px solid rgba(252, 175, 59, 0.22);
}

.pt-contact-form__trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.pt-contact-form__submit {
  width: 100%;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
}

.pt-contact-form__note {
  margin: 0;
  color: rgba(43, 43, 43, 0.7);
  font-size: 12px;
  line-height: 1.45;
}

.pt-contact-form__note a {
  color: var(--color-title);
  font-weight: 700;
}

.pt-thanks {
  min-height: calc(100vh - 260px);
  padding: 116px 0;
  display: flex;
  align-items: center;
}

.pt-thanks__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 56px;
  align-items: center;
}

.pt-thanks__content h1 {
  max-width: 720px;
  margin: 0 0 22px;
  color: var(--color-title);
  font-size: 42px;
  line-height: 1.12;
  font-weight: 800;
}

.pt-thanks__content p {
  max-width: 680px;
  margin: 0;
  color: rgba(43, 43, 43, 0.78);
  font-size: 20px;
  line-height: 1.6;
}

.pt-thanks__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.pt-thanks__card {
  display: grid;
  gap: 10px;
  padding: 34px;
  border: 1px solid rgba(252, 175, 59, 0.28);
  border-radius: 28px;
  background:
    radial-gradient(circle at 84% 14%, rgba(252, 175, 59, 0.24), transparent 34%),
    #fff;
  box-shadow: 0 22px 58px rgba(15, 23, 42, 0.09);
}

.pt-thanks__card span {
  width: fit-content;
  margin-top: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--bg-3);
  color: #a86400;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.pt-thanks__card span:first-child {
  margin-top: 0;
}

.pt-thanks__card strong {
  color: var(--color-title);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
}

.pt-thanks__card p {
  margin: 0 0 8px;
  color: rgba(43, 43, 43, 0.74);
  font-size: 15px;
  line-height: 1.55;
}

.pt-blog-hero {
  padding: 96px 0 76px;
}

.pt-blog-hero h1 {
  max-width: 860px;
  margin: 0 0 20px;
  color: var(--color-title);
  font-size: 42px;
  line-height: 1.12;
  font-weight: 800;
}

.pt-blog-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(43, 43, 43, 0.78);
  font-size: 20px;
  line-height: 1.6;
}

.pt-blog-list-section {
  padding: 72px 0 96px;
  background: linear-gradient(180deg, var(--bg-1), var(--bg-2));
}

.pt-blog-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.pt-blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.07);
}

.pt-blog-card__image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-3);
}

.pt-blog-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.pt-blog-card:hover .pt-blog-card__image img {
  transform: scale(1.035);
}

.pt-blog-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}

.pt-blog-card__content time,
.pt-article-hero time {
  display: inline-flex;
  color: #a86400;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
}

.pt-blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  margin-bottom: 14px;
  color: #a86400;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
}

.pt-blog-card__meta span {
  position: relative;
  padding-left: 16px;
}

.pt-blog-card__meta span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

.pt-blog-card h2 {
  margin: 0 0 14px;
  font-size: 20px !important;
  line-height: 1.22 !important;
  font-weight: 800;
}

.pt-blog-card h2 a,
.pt-blog-card h3 a {
  color: var(--color-title);
  text-decoration: none;
}

.pt-blog-card h3 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.18;
  font-weight: 800;
}

.pt-blog-card p,
.pt-blog-empty {
  margin: 0;
  color: rgba(43, 43, 43, 0.76);
  font-size: 16px;
  line-height: 1.6;
}

.pt-blog-card__more {
  display: inline-flex;
  margin-top: 22px;
  color: var(--color-title);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.pt-blog-card__button {
  align-self: flex-start;
  min-height: 48px;
  margin-top: auto;
  padding: 13px 18px;
  border-radius: 12px;
  font-size: 14px;
}

.pt-home-blog .pt-blog-card h3 {
  font-size: 20px !important;
  line-height: 1.22 !important;
}

.pt-home-blog .pt-blog-card p {
  font-size: 15px;
  line-height: 1.45;
}

.pt-home-blog__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 52px;
}

.pt-home-blog__head .pt-section__head {
  margin-bottom: 0;
}

.pt-home-blog__head .pt-section__head p + p {
  margin-top: 14px;
}

.pt-home-blog__all {
  margin-bottom: 4px;
  white-space: nowrap;
}

.pt-article-hero {
  padding: 84px 0 72px;
}

.pt-article-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 54px;
  align-items: center;
}

.pt-article-hero__content h1 {
  max-width: 820px;
  margin: 0 0 22px;
  color: var(--color-title);
  font-size: 42px;
  line-height: 1.12;
  font-weight: 800;
}

.pt-article-hero__content p {
  max-width: 720px;
  margin: 0;
  color: rgba(43, 43, 43, 0.78);
  font-size: 19px;
  line-height: 1.65;
}

.pt-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: rgba(43, 43, 43, 0.62);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
}

.pt-breadcrumbs a {
  color: var(--color-title);
  text-decoration: none;
}

.pt-breadcrumbs span:last-child {
  max-width: 54ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pt-article-hero__reading {
  display: inline-flex;
  margin-left: 14px;
  color: #a86400;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
}

.pt-article-hero__image {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.14);
}

.pt-article-hero__image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  height: auto;
  object-fit: cover;
}

.pt-article-body {
  padding: 72px 0 96px;
  background: #fff;
}

.pt-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 340px);
  gap: 46px;
  align-items: start;
  width: 100%;
}

.pt-article-main {
  min-width: 0;
}

.pt-article-content {
  width: 100%;
  margin: 0;
  color: rgba(43, 43, 43, 0.86);
  font-size: 18px;
  line-height: 1.6;
}

.pt-article-toc {
  margin: 0 0 42px;
  padding: 28px;
  border: 1px solid rgba(252, 175, 59, 0.28);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 14%, rgba(252, 175, 59, 0.18), transparent 34%),
    #fff8ee;
}

.pt-article-toc strong {
  display: block;
  margin-bottom: 16px;
  color: var(--color-title);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
}

.pt-article-toc ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: toc;
}

.pt-article-toc li {
  counter-increment: toc;
}

.pt-article-toc a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--color-title);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 700;
  text-decoration: none;
}

.pt-article-toc a::before {
  content: counter(toc);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: var(--color-accent);
  color: var(--color-title);
  font-size: 14px;
  font-weight: 800;
}

.pt-article-content > p:first-child {
  margin-bottom: 30px;
  padding: 24px 28px;
  border: 1px solid rgba(252, 175, 59, 0.28);
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 14%, rgba(252, 175, 59, 0.2), transparent 34%),
    #fff8ee;
  color: var(--color-title);
  font-size: 21px;
  line-height: 1.62;
  font-weight: 700;
}

.pt-article-content h2 {
  position: relative;
  margin: 58px 0 22px;
  padding-top: 22px;
  color: var(--color-title);
  font-size: 32px;
  line-height: 1.18;
  font-weight: 800;
}

.pt-article-content h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 74px;
  height: 5px;
  border-radius: 999px;
  background: var(--color-accent);
}

.pt-article-content h3 {
  margin: 34px 0 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(252, 175, 59, 0.12);
  color: var(--color-title);
  font-size: 24px;
  line-height: 1.22;
  font-weight: 800;
}

.pt-article-content p {
  margin: 0 0 20px;
}

.pt-article-content ul,
.pt-article-content ol {
  display: grid;
  gap: 12px;
  margin: 4px 0 30px;
  padding: 22px 24px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 22px;
  background: #fbfaf8;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.04);
  list-style: none;
}

.pt-article-content li {
  position: relative;
  padding-left: 28px;
  color: rgba(43, 43, 43, 0.86);
  font-weight: 600;
}

.pt-article-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 5px rgba(252, 175, 59, 0.16);
}

.pt-article-content blockquote {
  position: relative;
  margin: 32px 0;
  padding: 28px 30px 28px 76px;
  border: 1px solid rgba(252, 175, 59, 0.32);
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 12%, rgba(252, 175, 59, 0.18), transparent 32%),
    var(--bg-3);
  color: var(--color-title);
  font-weight: 800;
}

.pt-article-content blockquote::before {
  content: "“";
  position: absolute;
  left: 26px;
  top: 18px;
  color: #d48310;
  font-size: 58px;
  line-height: 1;
  font-weight: 800;
}

.pt-article-content blockquote p {
  margin: 0;
  font-size: 21px;
  line-height: 1.5;
}

.pt-article-cta {
  display: grid;
  gap: 22px;
  margin-top: 56px;
  padding: 32px;
  border: 1px solid rgba(252, 175, 59, 0.34);
  border-radius: 28px;
  background:
    radial-gradient(circle at 86% 16%, rgba(252, 175, 59, 0.22), transparent 34%),
    linear-gradient(180deg, #fffaf3 0%, #fff 100%);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
}

.pt-article-cta h2 {
  margin: 0 0 10px;
  color: var(--color-title);
  font-size: 28px;
  line-height: 1.16;
  font-weight: 800;
}

.pt-article-cta p {
  margin: 0;
  color: rgba(43, 43, 43, 0.78);
  font-size: 17px;
  line-height: 1.55;
}

.pt-article-cta ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pt-article-cta li {
  position: relative;
  padding-left: 24px;
  color: rgba(43, 43, 43, 0.84);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 700;
}

.pt-article-cta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(252, 175, 59, 0.16);
}

.pt-article-cta .pt-btn {
  width: fit-content;
}

.pt-article-author {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 24px;
  margin-top: 56px;
  padding: 28px;
  border: 1px solid rgba(252, 175, 59, 0.28);
  border-radius: 26px;
  background:
    radial-gradient(circle at 92% 14%, rgba(252, 175, 59, 0.18), transparent 34%),
    #fff8ee;
}

.pt-article-author img {
  display: block;
  width: 112px;
  height: 112px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

.pt-article-author__content {
  min-width: 0;
}

.pt-article-author__label {
  margin-bottom: 8px;
  color: #a86400;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
}

.pt-article-author h2 {
  margin: 0 0 8px;
  color: var(--color-title);
  font-size: 24px;
  line-height: 1.16;
  font-weight: 800;
}

.pt-article-author p {
  margin: 0 0 12px;
  color: rgba(43, 43, 43, 0.82);
  font-size: 16px;
  line-height: 1.6;
}

.pt-article-author__role {
  color: var(--color-title) !important;
  font-weight: 800;
}

.pt-article-author a {
  display: inline-flex;
  margin-top: 4px;
  color: var(--color-title);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.pt-article-note {
  margin-top: 20px;
  padding: 22px 24px;
  border-left: 5px solid var(--color-accent);
  border-radius: 18px;
  background: #fbfaf8;
}

.pt-article-note p {
  margin: 0;
  color: rgba(43, 43, 43, 0.76);
  font-size: 15px;
  line-height: 1.55;
}

.pt-article-note p + p {
  margin-top: 8px;
}

.pt-article-sidebar {
  position: sticky;
  top: 108px;
}

.pt-article-sidebar__inner {
  padding: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 26px;
  background: #fbfaf8;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.05);
}

.pt-article-sidebar h2 {
  margin: 0 0 18px;
  color: var(--color-title);
  font-size: 22px;
  line-height: 1.18;
  font-weight: 800;
}

.pt-article-sidebar__list {
  display: grid;
  gap: 16px;
}

.pt-article-side-card {
  display: grid;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.pt-article-side-card:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.pt-article-side-card__image {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  background: var(--bg-3);
}

.pt-article-side-card__image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
}

.pt-article-side-card__content {
  display: grid;
  gap: 8px;
}

.pt-article-side-card time,
.pt-article-side-card span {
  color: #a86400;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
}

.pt-article-side-card h3 {
  margin: 0;
  color: var(--color-title);
  font-size: 18px;
  line-height: 1.24;
  font-weight: 800;
}

.pt-article-side-card h3 a {
  color: inherit;
  text-decoration: none;
}

.pt-article-sidebar__all {
  display: inline-flex;
  margin-top: 20px;
  color: var(--color-title);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
  text-decoration: none;
}

.pt-author-hero {
  padding: 92px 0 82px;
}

.pt-author-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 64px;
  align-items: center;
}

.pt-author-hero h1 {
  margin: 0 0 18px;
  color: var(--color-title);
  font-size: 42px;
  line-height: 1.12;
  font-weight: 800;
}

.pt-author-hero p {
  max-width: 760px;
  margin: 0 0 16px;
  color: rgba(43, 43, 43, 0.8);
  font-size: 19px;
  line-height: 1.65;
}

.pt-author-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 30px;
}

.pt-author-hero__link {
  color: var(--color-title);
  font-weight: 800;
  text-decoration: none;
}

.pt-author-hero__photo {
  margin: 0;
}

.pt-author-hero__photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 32px;
  object-fit: cover;
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.16);
}

.pt-author-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.pt-author-panel {
  padding: 30px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.07);
}

.pt-author-panel h2 {
  margin: 0 0 14px;
  color: var(--color-title);
  font-size: 28px;
  line-height: 1.18;
  font-weight: 800;
}

.pt-author-panel p {
  margin: 0;
  color: rgba(43, 43, 43, 0.78);
  font-size: 16px;
  line-height: 1.65;
}

.pt-author-panel p + p {
  margin-top: 14px;
}

.pt-author-panel ul {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.pt-author-panel li {
  position: relative;
  padding-left: 24px;
  color: rgba(43, 43, 43, 0.82);
  font-weight: 700;
  line-height: 1.45;
}

.pt-author-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(252, 175, 59, 0.16);
}

.pt-article-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(900px, 100%);
  margin: 64px auto 0;
}

.pt-article-nav__item {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  background: #fbfaf8;
  color: var(--color-title);
  text-decoration: none;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.05);
}

.pt-article-nav__item--next {
  text-align: right;
}

.pt-article-nav__item:first-child:last-child {
  grid-column: 1 / -1;
}

.pt-article-nav__item span {
  color: #a86400;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
}

.pt-article-nav__item strong {
  color: var(--color-title);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 800;
}

@media (max-width: 991px) {
  .pt-blog-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pt-home-blog__head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .pt-home-blog__all {
    margin-bottom: 0;
  }

  .pt-article-hero__grid {
    grid-template-columns: 1fr;
  }

  .pt-article-layout {
    grid-template-columns: 1fr;
  }

  .pt-article-sidebar {
    position: static;
  }

  .pt-author-hero__grid,
  .pt-author-grid {
    grid-template-columns: 1fr;
  }

  .pt-author-hero__photo {
    max-width: 460px;
  }

  .pt-article-hero__image {
    max-width: 620px;
  }
}

@media (max-width: 640px) {
  .pt-header__cta {
    width: fit-content;
    height: 40px;
    min-height: 40px;
    padding: 9px 11px;
    border-radius: 10px;
    font-size: 11px;
    line-height: 1.1;
    justify-self: start;
  }

  .pt-footer__socials {
    justify-content: flex-start;
  }

  .pt-popup {
    padding: 16px;
  }

  .pt-popup__dialog {
    max-height: calc(100vh - 32px);
    padding: 28px 20px 22px;
    border-radius: 16px;
  }

  .pt-thanks {
    min-height: 0;
    padding: 56px 0;
  }

  .pt-thanks__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pt-thanks__content h1 {
    font-size: 28px;
  }

  .pt-thanks__content p {
    font-size: 16px;
  }

  .pt-thanks__actions .pt-btn {
    width: 100%;
  }

  .pt-thanks__card {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .pt-blog-hero,
  .pt-article-hero {
    padding: 56px 0 44px;
  }

  .pt-blog-hero h1,
  .pt-article-hero__content h1 {
    font-size: 28px;
  }

  .pt-blog-hero p,
  .pt-article-hero__content p {
    font-size: 16px;
  }

  .pt-blog-list-section,
  .pt-article-body {
    padding: 46px 0 64px;
  }

  .pt-blog-list,
  .pt-article-hero__grid {
    grid-template-columns: 1fr;
  }

  .pt-home-blog__head {
    gap: 20px;
    margin-bottom: 34px;
  }

  .pt-home-blog__all {
    width: 100%;
  }

  .pt-blog-card__content {
    padding: 22px 20px;
  }

  .pt-blog-card h2,
  .pt-blog-card h3 {
    font-size: 21px;
  }

  .pt-home-blog .pt-blog-card h3 {
    font-size: 20px !important;
  }

  .pt-blog-card__button {
    width: 100%;
  }

  .pt-article-content {
    font-size: 16px;
    line-height: 1.72;
  }

  .pt-article-content > p:first-child {
    padding: 20px;
    font-size: 17px;
    line-height: 1.58;
  }

  .pt-article-content h2 {
    margin-top: 40px;
    padding-top: 18px;
    font-size: 25px;
  }

  .pt-article-toc {
    margin-bottom: 32px;
    padding: 22px 20px;
    border-radius: 20px;
  }

  .pt-article-toc a {
    grid-template-columns: 30px minmax(0, 1fr);
    font-size: 15px;
  }

  .pt-article-toc a::before {
    width: 30px;
    height: 30px;
    border-radius: 10px;
  }

  .pt-article-content h3 {
    padding: 14px 16px;
    font-size: 20px;
  }

  .pt-article-content ul,
  .pt-article-content ol {
    padding: 18px 18px;
    border-radius: 18px;
  }

  .pt-article-content blockquote {
    padding: 62px 20px 22px;
    border-radius: 20px;
  }

  .pt-article-content blockquote::before {
    left: 20px;
    top: 14px;
    font-size: 48px;
  }

  .pt-article-content blockquote p {
    font-size: 17px;
  }

  .pt-article-author {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 40px;
    padding: 22px 20px;
    border-radius: 20px;
  }

  .pt-article-author img {
    width: 96px;
    height: 96px;
    border-radius: 20px;
  }

  .pt-article-author h2 {
    font-size: 22px;
  }

  .pt-article-author p {
    font-size: 15px;
  }

  .pt-article-cta {
    gap: 18px;
    margin-top: 40px;
    padding: 24px 20px;
    border-radius: 22px;
  }

  .pt-article-cta h2 {
    font-size: 24px;
  }

  .pt-article-cta p,
  .pt-article-cta li {
    font-size: 15px;
  }

  .pt-article-cta ul {
    grid-template-columns: 1fr;
  }

  .pt-article-cta .pt-btn {
    width: 100%;
  }

  .pt-author-hero {
    padding: 56px 0 48px;
  }

  .pt-author-hero h1 {
    font-size: 28px;
  }

  .pt-author-hero p {
    font-size: 16px;
  }

  .pt-author-hero__actions .pt-btn {
    width: 100%;
  }

  .pt-author-panel {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .pt-author-panel h2 {
    font-size: 24px;
  }

  .pt-breadcrumbs span:last-child {
    max-width: 32ch;
  }

  .pt-article-hero__reading {
    margin-left: 0;
    margin-bottom: 14px;
  }

  .pt-article-nav {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .pt-article-nav__item,
  .pt-article-nav__item--next {
    min-height: 0;
    padding: 20px;
    text-align: left;
  }

  .pt-article-nav__item strong {
    font-size: 18px;
  }
}

.pt-landing-page .pt-page .pt-blog-card h2,
.pt-landing-page .pt-page .pt-blog-card h3 {
  font-size: 20px !important;
  line-height: 1.22 !important;
}

.pt-landing-page .pt-page .pt-article-side-card h3 {
  font-size: 18px !important;
  line-height: 1.24 !important;
}
