/* Общая шапка и подвал (thank-you, блог, юр. страницы) */
html {
  color-scheme: light;
}
.psi-chrome-header {
  padding: 14px 0;
  border-bottom: 1px solid #eae7ea;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
  transition: transform 0.24s ease;
  will-change: transform;
}
.psi-chrome-header.header-hidden {
  transform: translateY(calc(-100% - 2px));
}
.psi-chrome-header .psi-chrome-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.psi-chrome-brand {
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
  font-family: Manrope, sans-serif;
}
.psi-chrome-brand span {
  color: #802d4b;
}
.psi-chrome-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.psi-chrome-nav a {
  color: #3d3d3d;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  font-family: Manrope, sans-serif;
}
.psi-chrome-nav a:hover {
  color: #802d4b;
}
.psi-chrome-phone {
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  white-space: nowrap;
}
.psi-chrome-phone:hover {
  color: #802d4b;
}
.psi-chrome-back {
  font-size: 0.9rem;
  font-weight: 500;
  color: #802d4b;
  text-decoration: none;
}
.psi-chrome-footer {
  padding: 28px 0 36px;
  background: #f6f4f6;
  border-top: 1px solid #eae7ea;
  font-family: Manrope, sans-serif;
  font-size: 0.85rem;
  color: #6e6e6e;
  line-height: 1.65;
}
.psi-chrome-footer .psi-chrome-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.psi-chrome-footer a {
  color: #6e6e6e;
  text-decoration: none;
}
.psi-chrome-footer a:hover {
  color: #802d4b;
}
.psi-chrome-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  margin-bottom: 1rem;
}
.article-after {
  margin-top: 2.5rem;
  padding-top: 0;
}
.article-disclaimer {
  font-size: 0.88rem;
  color: #6e6e6e;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}
.psi-blog-cta {
  margin: 0;
  padding: 1.75rem 1.5rem 1.85rem;
  background: linear-gradient(180deg, #faf8f9 0%, #f6f4f6 100%);
  border-radius: 16px;
  text-align: center;
}
.psi-blog-cta-lead {
  margin: 0 0 1.25rem;
  color: #3d3d3d;
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 36em;
  margin-left: auto;
  margin-right: auto;
}
.psi-blog-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.psi-btn {
  display: inline-block;
  padding: 0.55rem 1.15rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  font-family: Manrope, sans-serif;
}
.psi-btn-lg {
  padding: 0.85rem 1.65rem;
  font-size: 1rem;
  border-radius: 60px;
  min-width: min(100%, 240px);
  text-align: center;
}
.psi-chrome-nav a.psi-btn {
  font-weight: 600;
}
.psi-chrome-nav a.psi-btn-primary {
  color: #fff;
  background: #802d4b;
}
.psi-chrome-nav a.psi-btn-primary:hover {
  color: #fff;
}
.psi-chrome-nav a.psi-btn-outline {
  color: #802d4b;
  background: #fff;
}
.psi-btn-primary {
  background: #802d4b;
  color: #fff;
}
a.psi-btn-primary,
button.psi-btn-primary {
  color: #fff;
}
a.psi-btn-primary:hover,
button.psi-btn-primary:hover {
  color: #fff;
}
.psi-blog-cta a.psi-btn-primary {
  color: #fff;
  background: #802d4b;
}
.psi-blog-cta a.psi-btn-outline {
  color: #802d4b;
  background: #fff;
  border: 2px solid #802d4b;
}
.psi-blog-all-wrap a.psi-btn-outline {
  color: #802d4b;
  background: #fff;
  border: 2px solid #802d4b;
}
.psi-btn-outline {
  background: #fff;
  color: #802d4b;
  border: 2px solid #802d4b;
}
.psi-btn:hover {
  opacity: 0.92;
}
.psi-thank-you-more {
  margin-top: 1rem;
  text-align: center;
}

/* Мобильное бургер-меню (блог / юр. страницы) */
.psi-chrome-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: #f6f4f6;
  border: 1px solid #eae7ea;
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  touch-action: manipulation;
}
.psi-chrome-burger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: #b4436c;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.psi-chrome-burger.open {
  background: #f0e8eb;
  border-color: #e0d4d9;
}
.psi-chrome-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.psi-chrome-burger.open span:nth-child(2) {
  opacity: 0;
}
.psi-chrome-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.psi-chrome-mobile-nav {
  display: none;
  flex-direction: column;
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 24px 14px;
  gap: 4px;
}
.psi-chrome-mobile-nav.open {
  display: flex;
  animation: psiChromeNavIn 0.22s ease;
}
.psi-chrome-mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  font-family: Manrope, sans-serif;
  background: linear-gradient(180deg, #faf8f9 0%, #f6f4f6 100%);
}
.psi-chrome-mobile-nav a:first-child {
  border-radius: 16px 16px 12px 12px;
}
.psi-chrome-mobile-nav a:hover,
.psi-chrome-mobile-nav a:focus-visible {
  color: #802d4b;
  background: rgba(128, 45, 75, 0.06);
  outline: none;
}
.psi-chrome-mobile-nav a.psi-chrome-mobile-phone {
  font-size: 0.98rem;
  color: #3d3d3d;
}
.psi-chrome-mobile-nav a.psi-chrome-mobile-cta {
  margin-top: 6px;
  justify-content: center;
  background: #802d4b;
  color: #fff !important;
  border-radius: 60px;
  box-shadow: 0 4px 14px rgba(128, 45, 75, 0.22);
}
.psi-chrome-mobile-nav a.psi-chrome-mobile-cta:hover {
  background: #6e2640;
  color: #fff !important;
}
body.psi-chrome-nav-open {
  overflow: hidden;
}
@keyframes psiChromeNavIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 900px) {
  .psi-chrome-header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1000;
  }
  body.psi-chrome-has-fixed-header {
    padding-top: 74px;
  }
  .psi-chrome-nav {
    display: none;
  }
  .psi-chrome-burger {
    display: flex;
  }
  .psi-chrome-mobile-nav {
    background: #fff;
    border-top: 1px solid #eae7ea;
  }
  .psi-chrome-mobile-nav.open {
    padding-top: 12px;
    padding-bottom: 16px;
  }
  .psi-chrome-mobile-nav a {
    background: linear-gradient(180deg, #faf8f9 0%, #f6f4f6 100%);
    border: 1px solid #eae7ea;
  }
  .psi-chrome-mobile-nav a.psi-chrome-mobile-cta {
    border-color: #802d4b;
  }
}
@media (max-width: 480px) {
  .psi-chrome-mobile-nav {
    padding-left: 16px;
    padding-right: 16px;
  }
  .psi-chrome-brand {
    font-size: 1rem;
  }
}
