  :root {
    --pm-heading: #005f4d;
    --pm-text: #2d3748;
    --pm-accent: #ff6b35;
    --pm-mint: #3eb489;
    --pm-hover: #50c878;
    --pm-bg: #ffffff;
    --pm-soft-bg: #f6fbf9;
    --pm-border: rgba(0, 95, 77, 0.16);
    --pm-shadow: 0 18px 45px rgba(45, 55, 72, 0.08);
  }

  .pm-faq {
    background: var(--pm-bg);
    color: var(--pm-text);
    padding: 80px 20px;
    font-family: inherit;
  }

  .pm-faq__container {
    max-width: 1160px;
    margin: 0 auto;
  }

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

  .pm-faq__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(62, 180, 137, 0.12);
    color: var(--pm-heading);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
  }

  .pm-faq__eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pm-accent);
  }

  .pm-faq__title {
    margin: 0 0 16px;
    color: var(--pm-heading);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.12;
    font-weight: 700;
  }

  .pm-faq__subtitle {
    margin: 0;
    color: var(--pm-text);
    font-size: 18px;
    line-height: 1.65;
  }

  .pm-faq__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pm-faq__item {
    border: 1px solid var(--pm-border);
    border-radius: 20px;
    background: var(--pm-bg);
    box-shadow: 0 8px 26px rgba(45, 55, 72, 0.05);
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  }

  .pm-faq__item:hover {
    border-color: rgba(62, 180, 137, 0.55);
    box-shadow: var(--pm-shadow);
    transform: translateY(-2px);
  }

  .pm-faq__item[open] {
    border-color: rgba(0, 95, 77, 0.32);
    background: linear-gradient(180deg, var(--pm-bg) 0%, var(--pm-soft-bg) 100%);
  }

  .pm-faq__question {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 22px 56px 22px 24px;
    color: var(--pm-heading);
    font-size: 19px;
    line-height: 1.35;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
  }

  .pm-faq__question::-webkit-details-marker {
    display: none;
  }

  .pm-faq__question::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 24px;
    width: 28px;
    height: 28px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.12);
    color: var(--pm-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
    font-weight: 700;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
  }

  .pm-faq__item[open] .pm-faq__question::after {
    content: "−";
    background: var(--pm-heading);
    color: #ffffff;
  }

  .pm-faq__answer {
    padding: 0 24px 24px;
    color: var(--pm-text);
    font-size: 16px;
    line-height: 1.75;
  }

  .pm-faq__answer p {
    margin: 0 0 14px;
  }

  .pm-faq__answer p:last-child {
    margin-bottom: 0;
  }

  .pm-faq__answer ul {
    margin: 12px 0 0;
    padding-left: 20px;
  }

  .pm-faq__answer li {
    margin-bottom: 8px;
  }

  .pm-faq__answer strong {
    color: var(--pm-heading);
    font-weight: 700;
  }

  .pm-faq__cta {
    margin-top: 36px;
    padding: 30px;
    border-radius: 24px;
    background: var(--pm-soft-bg);
    border: 1px solid var(--pm-border);
    text-align: center;
  }

  .pm-faq__cta-title {
    margin: 0 0 10px;
    color: var(--pm-heading);
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
  }

  .pm-faq__cta-text {
    max-width: 720px;
    margin: 0 auto 22px;
    color: var(--pm-text);
    font-size: 16px;
    line-height: 1.65;
  }

  .pm-faq__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 24px;
    border-radius: 999px;
    background: var(--pm-accent);
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  }

  .pm-faq__button:hover {
    background: #e85a24;
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(255, 107, 53, 0.24);
  }

  @media (max-width: 768px) {
    .pm-faq {
      padding: 56px 16px;
    }

    .pm-faq__header {
      margin-bottom: 30px;
      text-align: left;
    }

    .pm-faq__subtitle {
      font-size: 16px;
    }

    .pm-faq__question {
      padding: 19px 52px 19px 18px;
      font-size: 17px;
    }

    .pm-faq__question::after {
      right: 18px;
    }

    .pm-faq__answer {
      padding: 0 18px 20px;
      font-size: 15px;
    }

    .pm-faq__cta {
      padding: 24px 18px;
      text-align: left;
    }

    .pm-faq__button {
      width: 100%;
    }
  }
.pm-services,
.pm-services * {
  box-sizing: border-box;
}

.pm-services {
  width: 100%;
  background: var(--pm-bg);
  color: var(--pm-text);
  font-family: inherit;
  overflow: hidden;
}

.pm-services a {
  color: inherit;
}

.pm-services__container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.pm-services__section {
  padding: 82px 0;
}

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

.pm-services__section--compact {
  padding: 56px 0;
}

.pm-services__header {
  max-width: 820px;
  margin: 0 auto 44px;
  text-align: center;
}

.pm-services__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(62, 180, 137, 0.12);
  color: var(--pm-heading);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
}

.pm-services__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pm-accent);
  flex: 0 0 auto;
}

.pm-services__title {
  margin: 0 0 16px;
  color: var(--pm-heading);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.pm-services__subtitle {
  margin: 0;
  color: var(--pm-text);
  font-size: 18px;
  line-height: 1.7;
}

.pm-services__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
  color: rgba(45, 55, 72, 0.72);
  font-size: 14px;
  line-height: 1.4;
}

.pm-services__breadcrumb a {
  color: var(--pm-heading);
  text-decoration: underline;
  text-decoration-color: var(--pm-mint);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 0.25s ease, text-decoration-color 0.25s ease;
}

.pm-services__breadcrumb a:hover {
  color: var(--pm-hover);
  text-decoration-color: var(--pm-hover);
}

.pm-services__hero {
  position: relative;
  padding: 72px 0 86px;
  background:
    radial-gradient(circle at 82% 12%, rgba(62, 180, 137, 0.2) 0, rgba(62, 180, 137, 0) 28%),
    radial-gradient(circle at 15% 78%, rgba(255, 107, 53, 0.15) 0, rgba(255, 107, 53, 0) 24%),
    linear-gradient(180deg, #ffffff 0%, #f6fbf9 100%);
}

.pm-services__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 46px;
  align-items: center;
}

.pm-services__hero h1 {
  margin: 0 0 20px;
  color: var(--pm-heading);
  font-size: clamp(38px, 5.3vw, 66px);
  line-height: 1.05;
  font-weight: 850;
  letter-spacing: -0.045em;
}

.pm-services__hero-lead {
  max-width: 720px;
  margin: 0 0 28px;
  color: var(--pm-text);
  font-size: 20px;
  line-height: 1.65;
}

.pm-services__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 26px;
}

.pm-services__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
  text-decoration: none !important;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.pm-services__btn--primary {
  background: var(--pm-accent);
  color: #ffffff !important;
  box-shadow: 0 12px 26px rgba(255, 107, 53, 0.22);
}

.pm-services__btn--primary:hover {
  background: #e85a24;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(255, 107, 53, 0.28);
}

.pm-services__btn--secondary {
  background: transparent;
  color: var(--pm-heading) !important;
  border-color: var(--pm-heading);
}

.pm-services__btn--secondary:hover {
  background: var(--pm-heading);
  color: #ffffff !important;
  transform: translateY(-2px);
}

.pm-services__hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pm-services__tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--pm-border);
  color: var(--pm-text);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 650;
}

.pm-services__hero-card {
  position: relative;
  padding: 28px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--pm-border);
  box-shadow: var(--pm-shadow);
  backdrop-filter: blur(10px);
}

.pm-services__system-card {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(145deg, var(--pm-heading) 0%, #0f7a5f 100%);
  color: #ffffff;
  overflow: hidden;
}

.pm-services__system-title {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 850;
}

.pm-services__system-text {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.6;
}

.pm-services__system-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.pm-services__system-item {
  min-height: 92px;
  padding: 15px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.pm-services__system-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  border-radius: 12px;
  background: rgba(255, 107, 53, 0.98);
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
}

.pm-services__system-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  line-height: 1.25;
}

.pm-services__system-item span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.35;
}

.pm-services__intro {
  max-width: 920px;
  margin: 0 auto;
  padding: 36px;
  border-radius: 28px;
  background: var(--pm-soft-bg);
  border: 1px solid var(--pm-border);
}

.pm-services__intro p {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.75;
}

.pm-services__intro p:last-child {
  margin-bottom: 0;
}

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

.pm-services__card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--pm-border);
  box-shadow: 0 10px 30px rgba(45, 55, 72, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pm-services__card:hover {
  transform: translateY(-4px);
  border-color: rgba(62, 180, 137, 0.54);
  box-shadow: var(--pm-shadow-hover);
}

.pm-services__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(62, 180, 137, 0.13);
  color: var(--pm-heading);
  font-size: 22px;
  font-weight: 900;
}

.pm-services__card h3 {
  margin: 0 0 10px;
  color: var(--pm-heading);
  font-size: 21px;
  line-height: 1.25;
  font-weight: 850;
}

.pm-services__card p {
  margin: 0 0 18px;
  color: var(--pm-text);
  font-size: 15px;
  line-height: 1.65;
}

.pm-services__card ul {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.pm-services__card li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 18px;
  color: rgba(45, 55, 72, 0.88);
  font-size: 14px;
  line-height: 1.45;
}

.pm-services__card li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pm-accent);
}

.pm-services__card-link {
  margin-top: auto;
  color: var(--pm-heading) !important;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 800;
  text-decoration: underline !important;
  text-decoration-color: var(--pm-mint) !important;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 5px;
  transition: color 0.25s ease, text-decoration-color 0.25s ease;
}

.pm-services__card-link:hover {
  color: var(--pm-hover) !important;
  text-decoration-color: var(--pm-hover) !important;
}

.pm-services__details {
  display: grid;
  gap: 22px;
}

.pm-services__detail {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 28px;
  padding: 30px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid var(--pm-border);
  box-shadow: 0 8px 26px rgba(45, 55, 72, 0.04);
}

.pm-services__detail-title {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.pm-services__detail-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--pm-heading);
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
  font-weight: 850;
  flex: 0 0 auto;
}

.pm-services__detail h3 {
  margin: 0 0 12px;
  color: var(--pm-heading);
  font-size: 26px;
  line-height: 1.22;
  font-weight: 850;
}

.pm-services__detail p {
  margin: 0;
  color: var(--pm-text);
  font-size: 16px;
  line-height: 1.7;
}

.pm-services__detail-content h4 {
  margin: 0 0 14px;
  color: var(--pm-heading);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 800;
}

.pm-services__checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pm-services__checklist li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  line-height: 1.45;
}

.pm-services__checklist li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--pm-accent);
  font-weight: 900;
}

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

.pm-services__problem {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--pm-border);
}

.pm-services__problem-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: var(--pm-soft-orange);
  color: var(--pm-accent);
  font-weight: 900;
  flex: 0 0 auto;
}

.pm-services__problem p {
  margin: 0;
  color: var(--pm-text);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 650;
}

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

.pm-services__format {
  padding: 28px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid var(--pm-border);
  box-shadow: 0 8px 24px rgba(45, 55, 72, 0.05);
}

.pm-services__format-label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 107, 53, 0.12);
  color: var(--pm-accent);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 850;
}

.pm-services__format h3 {
  margin: 0 0 12px;
  color: var(--pm-heading);
  font-size: 24px;
  line-height: 1.25;
  font-weight: 850;
}

.pm-services__format p {
  margin: 0;
  color: var(--pm-text);
  font-size: 16px;
  line-height: 1.7;
}

.pm-services__steps {
  position: relative;
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.pm-services__step {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid var(--pm-border);
}

.pm-services__step::before {
  content: counter(steps);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--pm-heading);
  color: #ffffff;
  font-size: 18px;
  font-weight: 850;
}

.pm-services__step h3 {
  margin: 0 0 6px;
  color: var(--pm-heading);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 850;
}

.pm-services__step p {
  margin: 0;
  color: var(--pm-text);
  font-size: 15px;
  line-height: 1.65;
}

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

.pm-services__audience-card {
  padding: 20px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--pm-border);
}

.pm-services__audience-card h3 {
  margin: 0 0 8px;
  color: var(--pm-heading);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 850;
}

.pm-services__audience-card p {
  margin: 0;
  color: var(--pm-text);
  font-size: 14px;
  line-height: 1.55;
}

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

.pm-services__benefit {
  padding: 22px;
  border-radius: 22px;
  background: var(--pm-soft-bg);
  border: 1px solid var(--pm-border);
}

.pm-services__benefit strong {
  display: block;
  margin-bottom: 8px;
  color: var(--pm-heading);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 850;
}

.pm-services__benefit span {
  display: block;
  color: var(--pm-text);
  font-size: 15px;
  line-height: 1.6;
}

.pm-services__price {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 26px;
  align-items: stretch;
}

.pm-services__price-box {
  padding: 34px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid var(--pm-border);
  box-shadow: var(--pm-shadow);
}

.pm-services__price-box h2,
.pm-services__price-box h3 {
  margin: 0 0 14px;
  color: var(--pm-heading);
  font-size: 30px;
  line-height: 1.2;
  font-weight: 850;
}

.pm-services__price-box p {
  margin: 0 0 18px;
  color: var(--pm-text);
  font-size: 17px;
  line-height: 1.75;
}

.pm-services__price-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pm-services__price-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 25px;
  color: var(--pm-text);
  font-size: 15px;
  line-height: 1.5;
}

.pm-services__price-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--pm-accent);
}

.pm-services__faq {
  display: grid;
  gap: 12px;
  max-width: 940px;
  margin: 0 auto;
}

.pm-services__faq-item {
  border: 1px solid var(--pm-border);
  border-radius: 20px;
  background: #ffffff;
  overflow: hidden;
}

.pm-services__faq-question {
  position: relative;
  padding: 20px 58px 20px 22px;
  color: var(--pm-heading);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.pm-services__faq-question::-webkit-details-marker {
  display: none;
}

.pm-services__faq-question::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.12);
  color: var(--pm-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
}

.pm-services__faq-item[open] .pm-services__faq-question::after {
  content: "−";
  background: var(--pm-heading);
  color: #ffffff;
}

.pm-services__faq-answer {
  padding: 0 22px 22px;
  color: var(--pm-text);
  font-size: 16px;
  line-height: 1.7;
}

.pm-services__faq-answer p {
  margin: 0;
}

.pm-services__cta {
  padding: 48px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 92% 0%, rgba(255, 107, 53, 0.18) 0, rgba(255, 107, 53, 0) 30%),
    linear-gradient(145deg, var(--pm-heading) 0%, #0f7a5f 100%);
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.pm-services__cta h2 {
  max-width: 780px;
  margin: 0 auto 14px;
  color: #ffffff;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.pm-services__cta p {
  max-width: 760px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.7;
}

.pm-services__cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.pm-services__cta .pm-services__btn--secondary {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.72);
}

.pm-services__cta .pm-services__btn--secondary:hover {
  background: #ffffff;
  color: var(--pm-heading) !important;
}

@media (max-width: 1100px) {
  .pm-services__directions {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 960px) {
  .pm-services__hero {
    padding: 52px 0 64px;
  }

  .pm-services__hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .pm-services__detail {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .pm-services__formats,
  .pm-services__benefits {
    grid-template-columns: 1fr;
  }

  .pm-services__price {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .pm-services__container {
    width: min(100% - 32px, 1160px);
  }

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

  .pm-services__section--compact {
    padding: 44px 0;
  }

  .pm-services__header {
    margin-bottom: 30px;
    text-align: left;
  }

  .pm-services__subtitle,
  .pm-services__hero-lead {
    font-size: 16px;
    line-height: 1.65;
  }

  .pm-services__hero-actions,
  .pm-services__cta-actions {
    flex-direction: column;
  }

  .pm-services__btn {
    width: 100%;
  }

  .pm-services__hero-card,
  .pm-services__intro,
  .pm-services__price-box,
  .pm-services__cta {
    padding: 24px;
    border-radius: 24px;
  }

  .pm-services__system-grid,
  .pm-services__directions,
  .pm-services__problems,
  .pm-services__audience,
  .pm-services__checklist {
    grid-template-columns: 1fr;
  }

  .pm-services__card {
    padding: 22px;
  }

  .pm-services__detail {
    padding: 24px;
    border-radius: 24px;
  }

  .pm-services__detail-title {
    flex-direction: column;
    gap: 12px;
  }

  .pm-services__detail h3 {
    font-size: 24px;
  }

  .pm-services__step {
    grid-template-columns: 1fr;
  }

  .pm-services__faq-question {
    padding: 18px 54px 18px 18px;
    font-size: 17px;
  }

  .pm-services__faq-answer {
    padding: 0 18px 18px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .pm-services__container {
    width: min(100% - 24px, 1160px);
  }

  .pm-services__hero h1 {
    font-size: 36px;
  }

  .pm-services__title {
    font-size: 31px;
  }

  .pm-services__hero-tags {
    gap: 8px;
  }

  .pm-services__tag {
    font-size: 13px;
  }

  .pm-services__format,
  .pm-services__problem,
  .pm-services__audience-card,
  .pm-services__benefit {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pm-services__btn,
  .pm-services__card,
  .pm-services__card-link,
  .pm-services__breadcrumb a {
    transition: none;
  }

  .pm-services__btn:hover,
  .pm-services__card:hover {
    transform: none;
  }
}