:root {
  --pm-ink: #0f172a;
  --pm-muted: #637083;
  --pm-line: #e7edf5;
  --pm-blue: #164a7d;
  --pm-cyan: #14b8c4;
  --pm-gold: #ffae11;
  --pm-green: #16a163;
  --pm-soft: #f5f8fc;
  --pm-white: #ffffff;
  --tp-ink: var(--pm-ink);
  --tp-muted: var(--pm-muted);
  --tp-line: var(--pm-line);
  --tp-blue: var(--pm-blue);
  --tp-cyan: var(--pm-cyan);
  --tp-gold: var(--pm-gold);
  --tp-green: var(--pm-green);
  --tp-soft: var(--pm-soft);
  --tp-white: var(--pm-white);
}

#preloader {
  display: none !important;
}

.pm-site-header {
  position: relative;
  z-index: 20;
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.pm-rich-header {
  position: relative;
  z-index: 20;
  background: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.pm-simple-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
}

.pm-simple-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}

.pm-simple-logo img {
  display: block;
  width: 214px;
  max-width: 34vw;
  height: auto;
}

.pm-simple-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex: 1 1 auto;
}

.pm-simple-menu a {
  color: #243244;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pm-simple-menu a:hover,
.pm-simple-menu a:focus {
  color: var(--pm-blue);
}

.pm-simple-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.pm-simple-toggle {
  display: none;
}

.tp-container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.tp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}

.tp-nav__row {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.tp-logo img {
  width: 218px;
  max-width: 54vw;
  height: auto;
  display: block;
}

.tp-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tp-menu a {
  color: #1f2d3d;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.tp-menu a:hover,
.tp-menu a:focus {
  color: var(--tp-blue);
}

.tp-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.tp-menu-toggle {
  display: none;
}

.tp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.tp-btn:hover {
  transform: translateY(-2px);
}

.tp-btn--primary {
  color: #111827;
  background: var(--tp-gold);
  box-shadow: 0 14px 28px rgba(255, 174, 17, 0.26);
}

.tp-btn--primary:hover,
.tp-btn--primary:focus {
  color: #111827;
  background: #ffc247;
}

.tp-btn--ghost {
  color: var(--tp-blue);
  border-color: rgba(22, 74, 125, 0.18);
  background: #ffffff;
}

.tp-btn--ghost:hover,
.tp-btn--ghost:focus {
  color: var(--tp-blue);
  border-color: rgba(22, 74, 125, 0.32);
  box-shadow: 0 10px 28px rgba(22, 74, 125, 0.11);
}

.main-content {
  padding-top: 78px;
}

@media (max-width: 1100px) {
  .tp-nav__row {
    flex-wrap: wrap;
  }

  .tp-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    border: 1px solid rgba(22, 74, 125, 0.18);
    border-radius: 8px;
    color: var(--tp-blue);
    background: linear-gradient(180deg, #ffffff, #f7fafc);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
    font-size: 17px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
  }

  .tp-menu-toggle i {
    display: block;
    color: currentColor;
    font-size: 17px;
    line-height: 1;
  }

  .tp-menu {
    display: none;
    order: 4;
    flex: 0 0 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 0 0 14px;
  }

  .tp-nav.is-open .tp-menu {
    display: grid;
  }

  .tp-menu li {
    min-width: 0;
  }

  .tp-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px;
    border: 1px solid var(--tp-line);
    border-radius: 6px;
    background: #ffffff;
    text-align: center;
  }
}

.pm-rich-top {
  color: rgba(255, 255, 255, 0.82);
  background: #10253f;
  font-size: 13px;
}

.pm-rich-top__row,
.pm-rich-middle__row,
.pm-rich-nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.pm-rich-top__row {
  min-height: 40px;
  flex-wrap: wrap;
}

.pm-rich-top i,
.pm-rich-top b {
  color: var(--pm-gold);
}

.pm-rich-top__links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.pm-rich-top a {
  color: #ffffff;
  font-weight: 700;
}

.pm-rich-middle {
  background: #ffffff;
}

.pm-rich-middle__row {
  min-height: 104px;
}

.pm-rich-logo img {
  display: block;
  width: 230px;
  max-width: 42vw;
  height: auto;
}

.pm-rich-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.pm-rich-contact--right {
  justify-content: flex-end;
  text-align: left;
}

.pm-rich-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: var(--pm-blue);
  font-size: 18px;
  flex: 0 0 auto;
}

.pm-rich-contact small {
  display: block;
  color: var(--pm-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.pm-rich-contact a {
  color: #162235;
  font-size: 13px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.pm-rich-nav {
  overflow: hidden;
  background: #f7fafc;
  border-top: 1px solid var(--pm-line);
  border-bottom: 1px solid var(--pm-line);
}

.pm-rich-toggle {
  display: none;
}

.pm-rich-nav__row {
  justify-content: flex-start;
  min-height: 58px;
  gap: 0;
  max-width: 100%;
  overflow-x: auto;
  flex-wrap: nowrap;
  scrollbar-width: none;
}

.pm-rich-nav__row::-webkit-scrollbar {
  display: none;
}

.pm-rich-nav__row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 14px;
  border-right: 1px solid var(--pm-line);
  color: #243244;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pm-rich-nav__row a:first-child {
  border-left: 1px solid var(--pm-line);
}

.pm-rich-nav__row a:hover,
.pm-rich-nav__row a:focus {
  color: var(--pm-blue);
  background: #ffffff;
}

.pm-rich-home {
  width: 58px;
  color: #ffffff !important;
  background: var(--pm-blue) !important;
  font-size: 20px !important;
}

.pm-rich-paid {
  margin-left: auto;
  color: #111827 !important;
  background: var(--pm-gold);
}

.pm-site-strip {
  background: #0d2239;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.pm-site-strip__row,
.pm-site-nav__row,
.pm-footer-v2__top,
.pm-footer-v2__bottom,
.pm-payment-strip__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.pm-site-strip__row {
  min-height: 38px;
  flex-wrap: wrap;
}

.pm-site-strip b,
.pm-site-strip i {
  color: var(--pm-gold);
}

.pm-site-strip a {
  color: #ffffff;
}

.pm-site-nav {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.pm-site-nav__row {
  min-height: 82px;
}

.pm-site-logo img {
  display: block;
  width: 214px;
  max-width: 42vw;
  height: auto;
}

.pm-site-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex: 1 1 auto;
}

.pm-site-menu a {
  color: #243244;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.pm-site-menu a:hover,
.pm-site-menu a:focus {
  color: var(--pm-blue);
}

.pm-site-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.pm-inner-title {
  padding: 0 !important;
  background:
    linear-gradient(90deg, rgba(10, 31, 57, 0.93), rgba(12, 55, 91, 0.72)),
    url("../netema/images/bg/slide3.jpg") center/cover no-repeat !important;
}

.pm-inner-title .container {
  padding-top: 72px !important;
  padding-bottom: 44px !important;
}

.pm-inner-title .title {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-bottom: 14px;
  color: #ffffff !important;
  font-size: 44px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.pm-inner-title .title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 74px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pm-gold), var(--pm-cyan));
}

.pm-inner-title .breadcrumb {
  margin: 14px 0 0;
  padding: 0;
  background: transparent;
}

.pm-inner-title .breadcrumb a,
.pm-inner-title .breadcrumb .active {
  color: rgba(255, 255, 255, 0.78) !important;
}

.pm-payment-strip {
  padding: 18px 0;
  background: #f7fafc;
  border-top: 1px solid var(--pm-line);
  border-bottom: 1px solid var(--pm-line);
}

.pm-payment-strip .container,
.pm-footer-v2 .container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.pm-payment-strip__row {
  flex-wrap: wrap;
}

.pm-payment-strip span {
  color: #243244;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pm-payment-strip img {
  max-width: 82px;
  max-height: 34px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
}

.pm-footer-v2 {
  color: rgba(255, 255, 255, 0.74);
  background:
    linear-gradient(135deg, rgba(13, 34, 57, 0.96), rgba(7, 19, 33, 0.98)),
    url("../netema/images/bg/team-bg1.png") center/cover no-repeat;
}

.pm-footer-v2__top {
  padding: 52px 0 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.pm-footer-v2__top img {
  width: 230px;
  max-width: 100%;
  height: auto;
  margin-bottom: 16px;
}

.pm-footer-v2__top p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}

.pm-footer-v2__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  white-space: nowrap;
}

.pm-footer-v2__cta span {
  color: #ffffff;
  font-weight: 900;
}

.pm-footer-v2__grid {
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 0.8fr 1.2fr;
  gap: 34px;
  padding: 38px 0;
}

.pm-footer-v2 h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pm-footer-v2 a {
  display: block;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.74);
}

.pm-footer-v2 a:hover,
.pm-footer-v2 a:focus {
  color: var(--pm-gold);
}

.pm-footer-v2 p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.72);
}

.pm-footer-v2__bottom {
  min-height: 68px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  flex-wrap: wrap;
}

.menuzord.yellow .menuzord-menu > li > a {
  color: #1f2d3d;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.menuzord.yellow .menuzord-menu > li.active > a,
.menuzord.yellow .menuzord-menu > li:hover > a {
  color: var(--pm-blue) !important;
  background: transparent !important;
}

.pm-page {
  background: var(--pm-white);
  color: var(--pm-ink);
}

.pm-section {
  padding: 78px 0;
}

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

.pm-hero {
  margin-top: -1px;
  padding: 86px 0 74px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(10, 31, 57, 0.94), rgba(12, 55, 91, 0.76)),
    url("../netema/images/bg/slide1.jpg") center/cover no-repeat;
}

.pm-hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: 48px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.pm-hero p {
  max-width: 720px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.pm-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pm-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.pm-heading h2,
.pm-copy h2 {
  margin: 0;
  color: var(--pm-ink);
  font-size: 40px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
}

.pm-heading p,
.pm-copy p {
  margin: 14px 0 0;
  color: var(--pm-muted);
  font-size: 16px;
}

.pm-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px;
  align-items: center;
}

.pm-grid-2 > *,
.pm-grid-3 > *,
.pm-grid-4 > * {
  min-width: 0;
}

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

.pm-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.pm-card {
  border: 1px solid var(--pm-line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.pm-card__body {
  padding: 26px;
}

.pm-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 7px;
  color: #ffffff;
  background: var(--pm-blue);
  font-size: 19px;
}

.pm-card h3 {
  margin: 0 0 10px;
  color: var(--pm-ink);
  font-size: 20px;
  font-weight: 900;
}

.pm-card p,
.pm-card li {
  color: var(--pm-muted);
}

.pm-media {
  min-height: 420px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.03), rgba(15, 23, 42, 0.3)),
    url("../netema/images/about/6.jpg") center/cover no-repeat;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
}

.pm-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.pm-checks li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #263246;
  font-weight: 700;
}

.pm-checks i {
  margin-top: 4px;
  color: var(--pm-green);
}

.pm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pm-btn:hover,
.pm-btn:focus {
  transform: translateY(-2px);
  text-decoration: none;
}

.pm-btn--primary {
  color: #111827;
  background: var(--pm-gold);
  box-shadow: 0 14px 28px rgba(255, 174, 17, 0.24);
}

.pm-btn--primary:hover {
  color: #111827;
}

.pm-btn--ghost {
  color: var(--pm-blue);
  border-color: rgba(22, 74, 125, 0.18);
  background: #ffffff;
}

.pm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.pm-stat-band {
  color: #ffffff;
  background: #10253f;
}

.pm-stat-band .pm-grid-4 {
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.pm-stat {
  padding: 28px 24px;
  background: #10253f;
}

.pm-stat i {
  color: var(--pm-gold);
  font-size: 25px;
  margin-bottom: 10px;
}

.pm-stat strong {
  display: block;
  color: #ffffff;
  font-size: 26px;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.pm-stat span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.pm-plan {
  display: flex;
  flex-direction: column;
  min-height: 440px;
  padding: 26px 24px;
}

.pm-plan--featured {
  border-color: rgba(255, 174, 17, 0.5);
  box-shadow: 0 18px 48px rgba(255, 174, 17, 0.16);
}

.pm-plan__tag {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #0f5132;
  background: rgba(22, 161, 99, 0.12);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pm-plan__return {
  margin-top: 12px;
  color: var(--pm-blue);
  font-size: 40px;
  line-height: 1;
  font-weight: 900;
}

.pm-plan__return span {
  display: block;
  margin-top: 8px;
  color: var(--pm-muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.pm-plan ul {
  flex: 1 1 auto;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.pm-plan li {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #eef2f7;
}

.pm-plan li:last-child {
  border-bottom: 0;
}

.pm-plan li i {
  color: var(--pm-gold);
  margin-top: 4px;
}

.pm-faq-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.38fr) 1fr;
  gap: 28px;
}

.pm-faq-nav {
  position: sticky;
  top: 24px;
  align-self: start;
  padding: 16px;
}

.pm-faq-nav a {
  display: block;
  padding: 11px 12px;
  border-radius: 6px;
  color: #253247;
  font-weight: 700;
}

.pm-faq-nav a:hover {
  background: var(--pm-soft);
  color: var(--pm-blue);
}

.pm-faq-item {
  padding: 24px 26px;
  margin-bottom: 16px;
}

.pm-faq-item h3 {
  margin: 0 0 10px;
}

.pm-form {
  padding: 30px;
}

.pm-field {
  margin-bottom: 18px;
}

.pm-field label {
  display: block;
  margin-bottom: 8px;
  color: #263246;
  font-weight: 800;
}

.pm-field input,
.pm-field textarea,
.pm-field select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--pm-line);
  border-radius: 6px;
  background: #ffffff;
  color: var(--pm-ink);
  padding: 10px 13px;
  outline: none;
}

.pm-field textarea {
  min-height: 150px;
  resize: vertical;
}

.pm-consent {
  margin: 4px 0 18px;
}

.pm-consent label {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--pm-line);
  border-radius: 6px;
  background: #f8fbff;
  color: var(--pm-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.pm-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-height: 0;
  flex: 0 0 16px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--pm-blue);
}

.pm-consent a {
  color: var(--pm-blue);
  font-weight: 900;
}

.pm-alert {
  padding: 14px 16px;
  margin-bottom: 18px;
  border-radius: 6px;
  color: #92400e;
  background: #fff7ed;
  border: 1px solid #fed7aa;
}

.pm-alert--success {
  color: #065f46;
  background: #ecfdf5;
  border-color: #a7f3d0;
}

.pm-monitor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.pm-monitor {
  display: grid;
  min-height: 92px;
  place-items: center;
  border: 1px dashed rgba(22, 74, 125, 0.25);
  border-radius: 8px;
  background: #ffffff;
  color: var(--pm-blue);
  font-weight: 900;
}

.pm-auth {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 42px 0;
  background:
    linear-gradient(90deg, rgba(10, 31, 57, 0.94), rgba(12, 55, 91, 0.8)),
    url("../netema/images/bg/bg2.jpg") center/cover no-repeat;
}

.pm-auth-menu {
  width: min(1040px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto 26px;
}

.pm-auth-menu__brand img {
  display: block;
  width: 190px;
  max-width: 52vw;
  height: auto;
}

.pm-auth-menu__links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.pm-auth-menu__links a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pm-auth-menu__links a:hover,
.pm-auth-menu__links a:focus {
  color: var(--pm-gold);
}

.pm-auth-menu__toggle {
  display: none;
}

.pm-auth__wrap {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 30px;
  align-items: center;
}

.pm-auth__intro {
  color: #ffffff;
}

.pm-auth__intro img {
  width: 230px;
  max-width: 80%;
  margin-bottom: 34px;
}

.pm-auth__intro h1 {
  margin: 0;
  color: #ffffff;
  font-size: 46px;
  line-height: 1.08;
  font-weight: 900;
}

.pm-auth__intro p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
}

.pm-auth__card {
  padding: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
}

.pm-auth__card h2 {
  margin: 0 0 8px;
  color: var(--pm-ink);
  font-size: 28px;
  font-weight: 900;
}

.pm-auth__card > p {
  margin: 0 0 22px;
  color: var(--pm-muted);
}

.pm-auth__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 16px;
}

.pm-auth__links {
  margin-top: 16px;
  text-align: center;
}

.pm-auth__links a {
  color: var(--pm-blue);
  font-weight: 800;
}

.pm-full {
  grid-column: 1 / -1;
}

@media (max-width: 991px) {
  .pm-grid-2,
  .pm-grid-3,
  .pm-grid-4,
  .pm-faq-layout,
  .pm-auth__wrap {
    grid-template-columns: 1fr;
  }

  .pm-site-nav__row,
  .pm-rich-middle__row,
  .pm-footer-v2__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .pm-rich-middle__row {
    min-height: 0;
    padding: 18px 0;
    align-items: center;
    text-align: center;
  }

  .pm-rich-logo {
    order: -1;
  }

  .pm-rich-logo img {
    max-width: 72vw;
  }

  .pm-rich-contact,
  .pm-rich-contact--right {
    justify-content: center;
    min-width: 0;
    width: 100%;
    text-align: left;
  }

  .pm-rich-nav__row {
    overflow: visible;
    flex-wrap: wrap;
  }

  .pm-rich-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 46px;
    margin: 10px 0;
    border: 1px solid var(--pm-line);
    border-radius: 6px;
    color: #ffffff;
    background: var(--pm-blue);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .pm-rich-toggle i {
    color: var(--pm-gold);
    font-size: 16px;
  }

  .pm-rich-nav__row {
    display: none;
    padding: 0 0 12px;
  }

  .pm-rich-nav.is-open .pm-rich-nav__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    min-height: 0;
  }

  .pm-rich-paid {
    margin-left: 0;
  }

  .pm-simple-header__row {
    min-height: 70px;
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 0;
  }

  .pm-simple-logo img {
    width: 190px;
    max-width: 62vw;
  }

  .pm-simple-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    margin-left: auto;
    padding: 0;
    border: 1px solid rgba(22, 74, 125, 0.18);
    border-radius: 8px;
    color: var(--pm-blue);
    background: linear-gradient(180deg, #ffffff, #f7fafc);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
    font-size: 17px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
  }

  .pm-simple-toggle i {
    display: block;
    color: currentColor;
    font-size: 17px;
    line-height: 1;
  }

  .pm-simple-menu {
    display: none;
    order: 4;
    flex: 0 0 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 0 0 14px;
  }

  .pm-simple-header.is-open .pm-simple-menu {
    display: grid;
  }

  .pm-simple-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px;
    border: 1px solid var(--pm-line);
    border-radius: 6px;
    background: #ffffff;
    font-size: 11px;
    text-align: center;
  }

  .pm-simple-actions {
    order: 3;
    margin-left: auto;
  }

  .pm-site-menu {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .pm-footer-v2__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pm-monitor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pm-hero h1,
  .pm-auth__intro h1 {
    font-size: 38px;
  }
}

@media (max-width: 640px) {
  .pm-auth {
    padding-top: 18px;
  }

  .tp-nav__row {
    flex-direction: row;
    padding: 12px 0;
  }

  .tp-logo {
    order: 1;
  }

  .tp-menu-toggle {
    order: 2;
  }

  .tp-menu {
    order: 4;
  }

  .tp-actions {
    width: 100%;
    order: 3;
  }

  .tp-actions .tp-btn {
    flex: 1 1 0;
    padding-left: 12px;
    padding-right: 12px;
  }

  .pm-simple-header__row {
    align-items: center;
  }

  .pm-simple-actions {
    width: 100%;
    order: 5;
  }

  .pm-simple-actions .pm-btn {
    flex: 1 1 0;
    min-height: 40px;
    padding: 10px 12px;
  }

  .pm-rich-top__row {
    min-height: 0;
    padding: 9px 0;
    justify-content: center;
    text-align: center;
  }

  .pm-rich-top__links {
    justify-content: center;
    gap: 10px;
  }

  .pm-rich-middle__row {
    padding: 14px 0;
    gap: 12px;
  }

  .pm-rich-logo img {
    width: 190px;
  }

  .pm-rich-contact {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    max-width: 330px;
  }

  .pm-rich-icon {
    width: 38px;
    height: 38px;
    border-radius: 7px;
    font-size: 16px;
  }

  .pm-rich-nav__row a {
    min-height: 40px;
    border: 1px solid var(--pm-line);
    border-radius: 6px;
    background: #ffffff;
    padding: 0 12px;
    font-size: 11px;
    line-height: 1.2;
  }

  .pm-rich-home {
    width: auto;
    font-size: 17px !important;
  }

  .pm-site-strip {
    display: none;
  }

  .pm-site-nav__row {
    min-height: 0;
    padding: 14px 0;
    gap: 14px;
  }

  .pm-site-logo img {
    width: 188px;
    max-width: 72vw;
  }

  .pm-site-menu {
    display: flex;
    width: 100%;
    gap: 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .pm-site-menu::-webkit-scrollbar {
    display: none;
  }

  .pm-site-menu a {
    flex: 0 0 auto;
    min-width: 82px;
  }

  .pm-site-menu {
    gap: 8px;
  }

  .pm-site-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 6px;
    border: 1px solid var(--pm-line);
    border-radius: 6px;
    background: #ffffff;
    font-size: 11px;
    text-align: center;
  }

  .pm-site-actions {
    gap: 8px;
  }

  .pm-site-actions .pm-btn {
    min-height: 42px;
    padding: 10px 12px;
  }

  .pm-inner-title .container {
    padding-top: 48px !important;
    padding-bottom: 34px !important;
  }

  .pm-inner-title .breadcrumb {
    font-size: 13px;
  }

  .pm-payment-strip__row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .pm-payment-strip__row::-webkit-scrollbar {
    display: none;
  }

  .pm-payment-strip span {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .pm-payment-strip img {
    flex: 0 0 auto;
    width: auto;
    max-width: 68px;
    height: 28px;
  }

  .pm-section {
    padding: 56px 0;
  }

  .pm-hero {
    padding: 58px 0;
  }

  .pm-heading h2,
  .pm-copy h2 {
    font-size: 31px;
  }

  .pm-checks,
  .pm-monitor-grid,
  .pm-auth__grid {
    grid-template-columns: 1fr;
  }

  .pm-auth__card,
  .pm-form {
    padding: 22px;
  }

  .pm-auth-menu {
    flex-wrap: wrap;
    margin-bottom: 18px;
  }

  .pm-auth-menu__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    margin-left: auto;
    padding: 0;
    border: 1px solid rgba(22, 74, 125, 0.18);
    border-radius: 8px;
    color: var(--pm-blue);
    background: linear-gradient(180deg, #ffffff, #f7fafc);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
    font-size: 17px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
  }

  .pm-auth-menu__toggle i {
    display: block;
    color: currentColor;
    font-size: 17px;
    line-height: 1;
  }

  .pm-auth-menu__links {
    display: none;
    flex: 0 0 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .pm-auth-menu.is-open .pm-auth-menu__links {
    display: grid;
  }

  .pm-auth-menu__links a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    text-align: center;
  }

  .pm-site-actions,
  .pm-footer-v2__cta {
    width: 100%;
  }

  .pm-site-actions .pm-btn,
  .pm-footer-v2__cta .pm-btn {
    flex: 1 1 0;
  }

  .pm-footer-v2__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    padding: 28px 0;
  }

  .pm-inner-title .title {
    font-size: 34px;
  }

  .pm-footer-v2__top {
    padding-top: 32px;
    padding-bottom: 26px;
  }

  .pm-footer-v2__top img {
    width: 190px;
    margin-bottom: 12px;
  }

  .pm-footer-v2__top p {
    font-size: 14px;
    line-height: 1.55;
  }

  .pm-footer-v2__cta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px;
    white-space: normal;
  }

  .pm-footer-v2__cta span {
    text-align: center;
  }

  .pm-footer-v2__bottom {
    justify-content: center;
    min-height: 0;
    padding: 18px 0;
    text-align: center;
  }

  .pm-footer-v2__grid > div:last-child {
    grid-column: 1 / -1;
  }

  .pm-footer-v2 h3 {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .pm-footer-v2 a {
    margin-bottom: 7px;
    font-size: 13px;
  }

  .pm-footer-v2 p {
    font-size: 13px;
    line-height: 1.55;
  }
}

@media (max-width: 420px) {
  .pm-rich-nav.is-open .pm-rich-nav__row {
    grid-template-columns: 1fr;
  }

  .pm-site-menu a {
    min-height: 36px;
  }

  .pm-footer-v2__grid {
    gap: 18px;
  }
}
