:root {
  --pm-wine: #6f1735;
  --pm-wine-dark: #4c1024;
  --pm-wine-soft: #f6ecef;
  --pm-deep: #221117;
  --pm-text: #202020;
  --pm-muted: #6d6d6d;
  --pm-white: #ffffff;
  --pm-surface: #faf8f8;
  --pm-surface-alt: #f5f1f2;
  --pm-border: #e8e1e3;
  --pm-success: #6d846f;
  --pm-radius: 20px;
  --pm-radius-lg: 30px;
  --pm-shadow: 0 18px 50px rgba(76, 16, 36, .08);
  --pm-transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--pm-text);
  background: var(--pm-white);
  font-family: Inter, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(111, 23, 53, .35);
  outline-offset: 3px;
}

.pm-skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: var(--pm-wine);
  font-weight: 800;
  box-shadow: var(--pm-shadow);
  transition: var(--pm-transition);
}

.pm-skip-link:focus {
  transform: translateY(0);
}

.pm-topbar {
  background: var(--pm-deep);
  color: #fff;
  font-size: 12px;
}

.pm-topbar__inner {
  min-height: 38px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.pm-topbar__message {
  color: #e1d6da;
}

.pm-topbar__links {
  display: flex;
  gap: 18px;
}

.pm-topbar__links a {
  color: #fff;
}

.pm-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(232, 225, 227, .9);
}

.pm-header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.pm-header__brand img {
  width: 178px;
  height: auto;
  object-fit: contain;
}

.pm-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.pm-nav__link {
  position: relative;
  color: #474047;
  font-size: 13px;
  font-weight: 700;
}

.pm-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -10px;
  height: 2px;
  background: var(--pm-wine);
  transition: var(--pm-transition);
}

.pm-nav__link:hover::after,
.pm-nav__link.is-active::after {
  right: 0;
}

.pm-nav__link.is-active {
  color: var(--pm-wine);
}

.pm-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pm-header__menu {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--pm-border);
  border-radius: 12px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.pm-header__menu span {
  width: 20px;
  height: 2px;
  background: var(--pm-deep);
  border-radius: 10px;
}

.pm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--pm-wine);
  border-radius: 999px;
  background: var(--pm-wine);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  transition: transform var(--pm-transition), background var(--pm-transition), border-color var(--pm-transition);
}

.pm-btn:hover {
  transform: translateY(-2px);
  background: var(--pm-wine-dark);
  border-color: var(--pm-wine-dark);
  color: #fff;
}

.pm-btn--small {
  min-height: 42px;
  padding-inline: 18px;
}

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

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

.pm-btn--light:hover {
  background: #f6eef1;
  color: var(--pm-wine-dark);
  border-color: #f6eef1;
}

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

.pm-btn--outline-light:hover {
  background: #fff;
  color: var(--pm-wine);
  border-color: #fff;
}

.pm-link-arrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--pm-wine);
  font-weight: 800;
  font-size: 13px;
}

.pm-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--pm-wine);
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: .12em;
  font-weight: 800;
}

.pm-section {
  padding: clamp(76px, 8vw, 120px) 0;
}

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

.pm-section-title {
  margin: 0;
  color: var(--pm-deep);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 4.3vw, 40px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.pm-section-head {
  max-width: 850px;
  margin-bottom: 42px;
}

.pm-section-head p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--pm-muted);
  font-size: 16px;
  line-height: 1.8;
}

.pm-section-head--light .pm-section-title {
  color: #fff;
}

.pm-section-head--light p {
  color: #d5c5ca;
}

.pm-section-head--light .pm-eyebrow {
  color: #e3afbe;
}

.pm-lead {
  margin: 20px 0 0;
  color: var(--pm-muted);
  font-size: 17px;
  line-height: 1.85;
}

.pm-lead--small {
  font-size: 15px;
}

.pm-note {
  margin-top: 18px;
  padding-left: 14px;
  border-left: 3px solid var(--pm-wine);
  color: #5f5559;
  font-size: 13px;
}

.pm-hero {
  position: relative;
  overflow: hidden;
  padding: 32px 0 clamp(76px, 8vw, 108px);
  background: radial-gradient(circle at 12% 0%, rgba(111, 23, 53, .08), transparent 34%), linear-gradient(180deg, #fff 0%, #fcf8f9 100%);
}

.pm-hero__shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.pm-hero__shape--one {
  width: 380px;
  height: 380px;
  right: -160px;
  top: 70px;
  border: 70px solid rgba(111, 23, 53, .035);
}

.pm-hero__shape--two {
  width: 160px;
  height: 160px;
  left: 46%;
  bottom: -90px;
  border: 34px solid rgba(111, 23, 53, .035);
}

.pm-breadcrumb {
  margin-bottom: 56px;
}

.pm-breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  color: #7a7175;
  font-size: 12px;
}

.pm-breadcrumb__list li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: #b9adb1;
}

.pm-breadcrumb__list a:hover {
  color: var(--pm-wine);
}

.pm-hero__title {
  max-width: 820px;
  margin: 0;
  color: var(--pm-deep);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(46px, 6.3vw, 50px);
  line-height: .99;
  letter-spacing: -.05em;
}

.pm-hero__title em {
  color: var(--pm-wine);
  font-style: normal;
}

.pm-hero__description {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--pm-muted);
  font-size: 17px;
  line-height: 1.85;
}

.pm-hero__actions {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.pm-hero__proof {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 34px;
  color: #6b6366;
  font-size: 12px;
}

.pm-hero__proof b {
  color: var(--pm-wine);
  font-size: 14px;
}

.pm-hero-dashboard {
  position: relative;
  padding: 22px;
  border: 1px solid var(--pm-border);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(76, 16, 36, .10);
  transform: rotate(1.1deg);
}

.pm-hero-dashboard::before {
  content: "";
  position: absolute;
  inset: 12px auto auto 50%;
  width: 74%;
  height: 32px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(111, 23, 53, .05);
  filter: blur(18px);
}

.pm-hero-dashboard__head {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--pm-border);
  color: var(--pm-deep);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .09em;
}

.pm-hero-dashboard__head i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pm-success);
  box-shadow: 0 0 0 5px rgba(109, 132, 111, .12);
}

.pm-hero-dashboard__channels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.pm-hero-dashboard__channels article {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--pm-border);
  border-radius: 14px;
}

.pm-hero-dashboard__channels small,
.pm-hero-dashboard__channels b {
  display: block;
}

.pm-hero-dashboard__channels small {
  color: #999095;
  font-size: 7px;
  font-weight: 800;
}

.pm-hero-dashboard__channels b {
  margin-top: 2px;
  font-size: 12px;
}

.pm-hero-dashboard__channels em {
  color: var(--pm-wine);
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}

.pm-platform-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: block;
}

.pm-platform-dot--search {
  background: conic-gradient(#4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0);
}

.pm-platform-dot--social {
  background: linear-gradient(135deg, #1877f2, #7c3aed);
}

.pm-hero-dashboard__funnel {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
  padding: 16px;
  border-radius: 15px;
  background: var(--pm-deep);
  color: #fff;
  font-size: 8px;
  font-weight: 800;
}

.pm-hero-dashboard__funnel i {
  color: #d49aab;
  font-style: normal;
}

.pm-hero-dashboard__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.pm-hero-dashboard__metrics article {
  padding: 14px;
  border-radius: 13px;
  background: #faf7f8;
}

.pm-hero-dashboard__metrics small,
.pm-hero-dashboard__metrics strong,
.pm-hero-dashboard__metrics span {
  display: block;
}

.pm-hero-dashboard__metrics small {
  color: var(--pm-wine);
  font-size: 7px;
  font-weight: 800;
}

.pm-hero-dashboard__metrics strong {
  margin-top: 5px;
  font-size: 15px;
}

.pm-hero-dashboard__metrics span {
  margin-top: 2px;
  color: var(--pm-muted);
  font-size: 8px;
}

.pm-hero-dashboard__footer {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 16px;
  color: #7e7478;
  font-size: 8px;
  font-weight: 800;
}

.pm-highlight-strip {
  border-top: 1px solid var(--pm-border);
  border-bottom: 1px solid var(--pm-border);
  background: #fff;
}

.pm-highlight-strip__grid {
  min-height: 74px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: center;
}

.pm-highlight-strip__grid span {
  position: relative;
  text-align: center;
  color: #5d5458;
  font-size: 11px;
  font-weight: 800;
}

.pm-highlight-strip__grid span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 24px;
  background: var(--pm-border);
  transform: translateY(-50%);
}

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

.pm-system-grid article {
  min-height: 110px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--pm-border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(76, 16, 36, .04);
}

.pm-system-grid b {
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--pm-wine-soft);
  color: var(--pm-wine);
  font-size: 10px;
}

.pm-system-grid span {
  font-size: 13px;
  font-weight: 800;
}

.pm-card-grid {
  display: grid;
  gap: 16px;
}

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

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

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

.pm-service-card {
  position: relative;
  min-height: 330px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius);
  background: #fff;
  transition: transform var(--pm-transition), box-shadow var(--pm-transition), border-color var(--pm-transition);
}

.pm-service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--pm-shadow);
  border-color: #d9c8ce;
}

.pm-service-card::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 120px;
  height: 120px;
  border: 22px solid rgba(111, 23, 53, .04);
  border-radius: 50%;
}

.pm-service-card__index {
  color: var(--pm-wine);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}

.pm-service-card__title {
  margin: 44px 0 0;
  color: var(--pm-deep);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.pm-service-card__description {
  margin: 12px 0 0;
  color: var(--pm-muted);
  font-size: 13px;
  line-height: 1.8;
}

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

.pm-list li {
  position: relative;
  padding-left: 16px;
  margin-top: 7px;
  color: #5c5558;
  font-size: 11px;
}

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

.pm-list--light li {
  color: #eadfe2;
}

.pm-list--light li::before {
  background: #fff;
}

.pm-management-scope {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 30px;
  align-items: center;
  margin-top: 20px;
  padding: 34px;
  border-radius: var(--pm-radius);
  background: #fff;
  border: 1px solid var(--pm-border);
}

.pm-management-scope h3 {
  margin: 0;
  color: var(--pm-deep);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 26px;
}

.pm-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.pm-chip-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid var(--pm-border);
  border-radius: 999px;
  background: #fff;
  color: #5a5155;
  font-size: 10px;
  font-weight: 700;
}

.pm-meta {
  background: var(--pm-deep);
}

.pm-meta .pm-section-title {
  color: #fff;
}

.pm-meta .pm-lead {
  color: #d2c4c8;
}

.pm-meta .pm-eyebrow {
  color: #e1a9b9;
}

.pm-dark-card {
  min-height: 240px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .025));
  color: #fff;
}

.pm-dark-card span {
  color: #d99caf;
  font-size: 9px;
  font-weight: 800;
}

.pm-dark-card h3 {
  margin: 50px 0 0;
  font-size: 18px;
  font-weight: 800;
}

.pm-dark-card p {
  margin: 10px 0 0;
  color: #cfbec3;
  font-size: 12px;
  line-height: 1.75;
}

.pm-management-scope--dark {
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
}

.pm-management-scope--dark h3 {
  color: #fff;
}

.pm-management-scope--dark .pm-chip-grid span {
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  color: #eadde1;
}

.pm-comparison-table {
  overflow: hidden;
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius);
  background: #fff;
}

.pm-comparison-table__row {
  display: grid;
  grid-template-columns: .7fr 1fr 1fr;
  align-items: center;
  min-height: 76px;
  border-bottom: 1px solid var(--pm-border);
}

.pm-comparison-table__row:last-child {
  border-bottom: 0;
}

.pm-comparison-table__row>* {
  padding: 18px 24px;
}

.pm-comparison-table__row>*:not(:last-child) {
  border-right: 1px solid var(--pm-border);
}

.pm-comparison-table__row--head {
  background: var(--pm-wine);
  color: #fff;
  min-height: 60px;
  font-size: 11px;
  font-weight: 800;
}

.pm-comparison-table__row b {
  color: var(--pm-deep);
  font-size: 12px;
}

.pm-comparison-table__row span {
  color: #62595d;
  font-size: 12px;
}

.pm-comparison-table__row--head span {
  color: #fff;
}

.pm-full-funnel {
  background: linear-gradient(135deg, #4c1024 0%, #211015 72%);
}

.pm-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  gap: 10px;
  align-items: stretch;
}

.pm-flow article {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  background: rgba(255, 255, 255, .05);
}

.pm-flow article small,
.pm-flow article b,
.pm-flow article span {
  display: block;
}

.pm-flow article small {
  margin-bottom: auto;
  color: #d9a0b0;
  font-weight: 800;
}

.pm-flow article b {
  color: #fff;
  font-size: 14px;
}

.pm-flow article span {
  margin-top: 6px;
  color: #cebfc4;
  font-size: 10px;
  line-height: 1.5;
}

.pm-flow>i {
  align-self: center;
  color: #d9a0b0;
  font-style: normal;
}

.pm-feature-panel {
  height: 100%;
  min-height: 470px;
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius-lg);
  background: #fff;
}

.pm-feature-panel h2 {
  margin: 0;
  color: var(--pm-deep);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 3.3vw, 32);
  line-height: 1.1;
}

.pm-feature-panel p {
  margin: 18px 0 0;
  color: var(--pm-muted);
  line-height: 1.8;
}

.pm-feature-panel--wine {
  background: var(--pm-wine);
  border-color: var(--pm-wine);
  color: #fff;
}

.pm-feature-panel--wine h2,
.pm-feature-panel--wine .pm-eyebrow {
  color: #fff;
}

.pm-feature-panel--wine p {
  color: #ead9df;
}

.pm-feature-panel--wine .pm-chip-grid span {
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.pm-feature-panel--deep {
  background: var(--pm-deep);
  border-color: var(--pm-deep);
}

.pm-feature-panel--deep h2 {
  color: #fff;
}

.pm-feature-panel--deep p {
  color: #d2c3c8;
}

.pm-feature-panel--deep .pm-eyebrow {
  color: #e1a9b9;
}

.pm-feature-panel--deep .pm-chip-grid span {
  border-color: rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .05);
  color: #fff;
}

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

.pm-check-grid li {
  padding: 14px;
  border: 1px solid var(--pm-border);
  border-radius: 12px;
  color: #554d50;
  font-size: 11px;
  font-weight: 700;
}

.pm-landing-wireframe {
  max-width: 560px;
  margin-inline: auto;
  padding: 18px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--pm-border);
  box-shadow: var(--pm-shadow);
}

.pm-landing-wireframe__bar {
  display: flex;
  gap: 6px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--pm-border);
}

.pm-landing-wireframe__bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d8cbd0;
}

.pm-landing-wireframe__hero {
  position: relative;
  overflow: hidden;
  margin-top: 12px;
  min-height: 220px;
  padding: 34px;
  border-radius: 16px;
  background: linear-gradient(145deg, #f8ebef, #fff);
}

.pm-landing-wireframe__hero span {
  position: absolute;
  right: -20px;
  top: -35px;
  width: 140px;
  height: 140px;
  border: 24px solid rgba(111, 23, 53, .07);
  border-radius: 50%;
}

.pm-landing-wireframe__hero strong {
  display: block;
  max-width: 70%;
  color: var(--pm-deep);
  font-size: 25px;
}

.pm-landing-wireframe__hero p {
  max-width: 65%;
  color: var(--pm-muted);
  font-size: 10px;
}

.pm-landing-wireframe__hero button {
  border: 0;
  border-radius: 999px;
  padding: 9px 16px;
  background: var(--pm-wine);
  color: #fff;
  font-size: 8px;
  font-weight: 800;
}

.pm-landing-wireframe__proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 10px;
}

.pm-landing-wireframe__proof span {
  height: 52px;
  border-radius: 11px;
  background: #f7f3f4;
}

.pm-landing-wireframe__form {
  margin-top: 10px;
  padding: 18px;
  border: 1px solid var(--pm-border);
  border-radius: 14px;
}

.pm-landing-wireframe__form b {
  display: block;
  color: var(--pm-deep);
  font-size: 10px;
}

.pm-landing-wireframe__form span {
  display: block;
  height: 9px;
  margin-top: 9px;
  border-radius: 99px;
  background: #eee7e9;
}

.pm-landing-wireframe__form i {
  display: block;
  width: 34%;
  height: 18px;
  margin-top: 12px;
  border-radius: 99px;
  background: var(--pm-wine);
}

.pm-tracking {
  background: #fff;
}

.pm-metric-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--pm-border);
  border-radius: 18px;
  background: #fff;
}

.pm-metric-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--pm-wine-soft);
  color: var(--pm-wine);
  font-size: 9px;
  font-weight: 800;
}

.pm-metric-card h3 {
  margin: 38px 0 0;
  color: var(--pm-deep);
  font-size: 18px;
}

.pm-metric-card p {
  margin: 9px 0 0;
  color: var(--pm-muted);
  font-size: 11px;
}

.pm-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.pm-tools span {
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--pm-surface);
  border: 1px solid var(--pm-border);
  color: #5e5559;
  font-size: 10px;
  font-weight: 700;
}

.pm-remarketing {
  background: var(--pm-surface);
}

.pm-orbit {
  position: relative;
  min-height: 520px;
  max-width: 680px;
  margin-inline: auto;
  border-radius: 50%;
  border: 1px solid #ddcfd4;
}

.pm-orbit::before,
.pm-orbit::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px dashed #ddcfd4;
}

.pm-orbit::after {
  inset: 28%;
  border-style: solid;
}

.pm-orbit__core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--pm-wine);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  box-shadow: 0 16px 40px rgba(111, 23, 53, .18);
}

.pm-orbit__item {
  position: absolute;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--pm-border);
  box-shadow: 0 10px 25px rgba(76, 16, 36, .05);
  font-size: 10px;
  font-weight: 800;
}

.pm-orbit__item--1 {
  left: 5%;
  top: 18%;
}

.pm-orbit__item--2 {
  right: 3%;
  top: 23%;
}

.pm-orbit__item--3 {
  left: 0;
  bottom: 26%;
}

.pm-orbit__item--4 {
  right: 1%;
  bottom: 19%;
}

.pm-orbit__item--5 {
  left: 33%;
  top: 3%;
}

.pm-orbit__item--6 {
  left: 37%;
  bottom: 3%;
}

.pm-creative-formula {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.pm-creative-formula span {
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--pm-wine-soft);
  color: var(--pm-wine);
  font-size: 11px;
  font-weight: 800;
}

.pm-creative-formula i {
  color: #aa9ea3;
  font-style: normal;
}

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

.pm-process-grid article {
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--pm-border);
  border-radius: 17px;
  background: #fff;
}

.pm-process-grid b {
  color: var(--pm-wine);
  font-size: 10px;
  letter-spacing: .08em;
}

.pm-process-grid h3 {
  margin: 48px 0 0;
  color: var(--pm-deep);
  font-size: 16px;
}

.pm-process-grid p {
  margin: 9px 0 0;
  color: var(--pm-muted);
  font-size: 10px;
  line-height: 1.7;
}

.pm-budget {
  background: linear-gradient(180deg, #fff, #fbf7f8);
}

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

.pm-budget-grid article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--pm-border);
  border-radius: 18px;
  background: #fff;
}

.pm-budget-grid article span,
.pm-budget-grid article strong,
.pm-budget-grid article p,
.pm-budget-grid article small {
  display: block;
}

.pm-budget-grid article span {
  color: var(--pm-wine);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
}

.pm-budget-grid article strong {
  margin-top: 28px;
  color: var(--pm-deep);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 34px;
}

.pm-budget-grid article p {
  margin: 10px 0 0;
  color: #4e474a;
  font-size: 12px;
}

.pm-budget-grid article small {
  margin-top: 14px;
  color: var(--pm-muted);
  font-size: 10px;
  line-height: 1.6;
}

.pm-budget__tax {
  margin: 12px 0 0;
  color: var(--pm-muted);
  font-size: 11px;
  text-align: right;
}

.pm-industry-card {
  min-height: 250px;
  padding: 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--pm-border);
}

.pm-industry-card span {
  color: var(--pm-wine);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
}

.pm-industry-card h3 {
  margin: 52px 0 0;
  color: var(--pm-deep);
  font-size: 16px;
}

.pm-industry-card p {
  margin-top: 10px;
  color: var(--pm-muted);
  font-size: 10px;
  line-height: 1.7;
}

.pm-proof-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 14px;
}

.pm-proof-pill strong,
.pm-proof-pill {
  font-weight: 800;
}

.pm-proof-pill>span {
  color: #ead9df;
  font-size: 10px;
  line-height: 1.5;
}

.pm-proof-pill--light {
  border-color: var(--pm-border);
  color: var(--pm-wine);
}

.pm-proof-pill--light>span {
  color: var(--pm-muted);
}

.pm-performance {
  background: #fff;
}

.pm-reporting-ui {
  padding: 22px;
  border: 1px solid var(--pm-border);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--pm-shadow);
}

.pm-reporting-ui__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--pm-border);
}

.pm-reporting-ui__head small,
.pm-reporting-ui__head b {
  display: block;
}

.pm-reporting-ui__head small {
  color: var(--pm-wine);
  font-size: 7px;
  font-weight: 800;
}

.pm-reporting-ui__head b {
  margin-top: 4px;
  color: var(--pm-deep);
  font-size: 12px;
}

.pm-reporting-ui__head>span {
  padding: 7px 9px;
  border-radius: 999px;
  background: var(--pm-wine-soft);
  color: var(--pm-wine);
  font-size: 7px;
  font-weight: 800;
}

.pm-reporting-ui__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.pm-reporting-ui__cards article {
  padding: 14px;
  border: 1px solid var(--pm-border);
  border-radius: 12px;
}

.pm-reporting-ui__cards small,
.pm-reporting-ui__cards strong,
.pm-reporting-ui__cards i {
  display: block;
}

.pm-reporting-ui__cards small {
  color: #92868b;
  font-size: 7px;
  font-weight: 800;
}

.pm-reporting-ui__cards strong {
  margin-top: 5px;
  font-size: 11px;
}

.pm-reporting-ui__cards i {
  width: 60%;
  height: 4px;
  margin-top: 10px;
  border-radius: 99px;
  background: rgba(111, 23, 53, .25);
}

.pm-reporting-ui__chart {
  height: 190px;
  display: flex;
  align-items: end;
  gap: 12px;
  padding: 28px 20px 16px;
  margin-top: 12px;
  border-radius: 14px;
  background: #faf7f8;
}

.pm-reporting-ui__chart span {
  flex: 1;
  border-radius: 8px 8px 2px 2px;
  background: linear-gradient(180deg, var(--pm-wine), #b37489);
}

.pm-reporting-ui__chart span:nth-child(1) {
  height: 36%
}

.pm-reporting-ui__chart span:nth-child(2) {
  height: 62%
}

.pm-reporting-ui__chart span:nth-child(3) {
  height: 48%
}

.pm-reporting-ui__chart span:nth-child(4) {
  height: 73%
}

.pm-reporting-ui__chart span:nth-child(5) {
  height: 58%
}

.pm-reporting-ui__chart span:nth-child(6) {
  height: 86%
}

.pm-reporting-ui__footer {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  margin-top: 12px;
  color: #7c7276;
  font-size: 7px;
  font-weight: 800;
  text-align: center;
}

.pm-why {
  background: var(--pm-deep);
}

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

.pm-why-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .045);
}

.pm-why-grid b {
  color: #d99faf;
  font-size: 9px;
}

.pm-why-grid h3 {
  margin: 52px 0 0;
  color: #fff;
  font-size: 18px;
}

.pm-why-grid p {
  margin: 9px 0 0;
  color: #ccbfc3;
  font-size: 11px;
  line-height: 1.7;
}

.pm-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 24px;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, .10);
}

.pm-proof-grid article {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  background: #351720;
}

.pm-proof-grid strong {
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 32px;
}

.pm-proof-grid span {
  margin-top: 6px;
  color: #ccbfc3;
  font-size: 10px;
}

.pm-faq {
  background: var(--pm-surface);
}

.pm-accordion .accordion-item {
  border: 0;
  border-bottom: 1px solid var(--pm-border);
  background: transparent;
}

.pm-accordion .accordion-button {
  padding: 22px 0;
  background: transparent;
  box-shadow: none;
  color: var(--pm-deep);
  font-weight: 800;
  font-size: 14px;
}

.pm-accordion .accordion-button:not(.collapsed) {
  color: var(--pm-wine);
}

.pm-accordion .accordion-button:focus {
  box-shadow: none;
}

.pm-accordion .accordion-body {
  padding: 0 0 22px;
  color: var(--pm-muted);
  font-size: 13px;
  line-height: 1.8;
}

.pm-accordion .accordion-button::after {
  filter: grayscale(1);
}

.pm-enquiry {
  background: #fff;
}

.pm-enquiry__shell {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  overflow: hidden;
  border-radius: var(--pm-radius-lg);
  background: var(--pm-deep);
}

.pm-enquiry__copy {
  padding: clamp(34px, 5vw, 64px);
  color: #fff;
}

.pm-enquiry__copy .pm-eyebrow {
  color: #e2a9ba;
}

.pm-enquiry__copy h2 {
  margin: 0;
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.08;
}

.pm-enquiry__copy p {
  margin: 20px 0 0;
  color: #d3c2c8;
}

.pm-form {
  padding: clamp(30px, 4vw, 46px);
  background: #fff;
}

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

.pm-form label {
  display: block;
}

.pm-form label>span {
  display: block;
  margin-bottom: 7px;
  color: #554d50;
  font-size: 10px;
  font-weight: 800;
}

.pm-form input,
.pm-form select,
.pm-form textarea {
  width: 100%;
  border: 1px solid var(--pm-border);
  border-radius: 12px;
  background: #fff;
  color: var(--pm-text);
  padding: 13px 14px;
  font-size: 12px;
  transition: border-color var(--pm-transition), box-shadow var(--pm-transition);
}

.pm-form input,
.pm-form select {
  min-height: 48px;
}

.pm-form input:focus,
.pm-form select:focus,
.pm-form textarea:focus {
  outline: none;
  border-color: var(--pm-wine);
  box-shadow: 0 0 0 3px rgba(111, 23, 53, .08);
}

.pm-form textarea {
  resize: vertical;
  min-height: 110px;
}

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

.pm-form .pm-btn {
  margin-top: 16px;
}

.pm-form__status {
  min-height: 20px;
  margin: 10px 0 0;
  color: #766b6f;
  font-size: 10px;
}

.pm-final-cta {
  padding: clamp(60px, 7vw, 92px) 0;
  background: var(--pm-wine);
  color: #fff;
}

.pm-final-cta__inner {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 40px;
  align-items: center;
}

.pm-final-cta .pm-eyebrow {
  color: #f1c7d3;
}

.pm-final-cta h2 {
  margin: 0;
  max-width: 780px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.06;
}

.pm-final-cta p {
  max-width: 760px;
  margin: 16px 0 0;
  color: #ead7dd;
}

.pm-final-cta__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.pm-footer {
  padding: 66px 0 24px;
  background: #160b0f;
  color: #fff;
}

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

.pm-footer__brand img {
  width: 170px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: .96;
}

.pm-footer__brand p {
  max-width: 420px;
  margin: 20px 0 0;
  color: #bbaeb3;
  font-size: 12px;
  line-height: 1.8;
}

.pm-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 18px;
  color: #d8c9ce;
  font-size: 11px;
}

.pm-footer h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.pm-footer__grid>div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pm-footer__grid>div:not(:first-child) a {
  margin-top: 8px;
  color: #bbaeb3;
  font-size: 11px;
}

.pm-footer__grid a:hover {
  color: #fff;
}

.pm-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .09);
  color: #8f8287;
  font-size: 10px;
}

.pm-floating {
  position: fixed;
  z-index: 950;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pm-floating__action {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  background: var(--pm-wine);
  color: #fff;
  box-shadow: 0 10px 28px rgba(76, 16, 36, .20);
  font-size: 8px;
  font-weight: 800;
}

.pm-floating button {
  padding: 0;
}

.pm-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
  place-items: center;
  padding: 20px;
}

.pm-modal.is-open {
  display: grid;
}

.pm-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 7, 13, .70);
  backdrop-filter: blur(4px);
}

.pm-modal__panel {
  position: relative;
  z-index: 1;
  width: min(540px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 34px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .25);
}

.pm-modal__panel h2 {
  margin: 0;
  color: var(--pm-deep);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 32px;
  font-weight: 800;
}

.pm-modal__panel>p {
  color: var(--pm-muted);
  font-size: 12px;
}

.pm-modal__close {
  position: absolute;
  right: 16px;
  top: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--pm-surface);
  color: var(--pm-deep);
  font-size: 24px;
  line-height: 1;
}

.pm-form--modal {
  padding: 12px 0 0;
}

.pm-form--modal label {
  margin-top: 10px;
}

.pm-modal-open {
  overflow: hidden;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1199.98px) {
  .pm-nav {
    gap: 16px;
  }

  .pm-card-grid--5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .pm-flow>i {
    display: none;
  }

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

@media (max-width: 991.98px) {
  .pm-topbar__message {
    display: none;
  }

  .pm-topbar__inner {
    justify-content: center;
  }

  .pm-header__menu {
    display: flex;
  }

  .pm-header__actions .pm-btn {
    display: none;
  }

  .pm-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 20px;
    background: #fff;
    border-bottom: 1px solid var(--pm-border);
    box-shadow: 0 18px 40px rgba(76, 16, 36, .08);
  }

  .pm-nav.is-open {
    display: flex;
  }

  .pm-nav__link {
    padding: 12px 0;
  }

  .pm-nav__link::after {
    display: none;
  }

  .pm-breadcrumb {
    margin-bottom: 34px;
  }

  .pm-hero-dashboard {
    transform: none;
    max-width: 620px;
    margin-inline: auto;
  }

  .pm-highlight-strip__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 10px 0;
  }

  .pm-highlight-strip__grid span {
    min-height: 40px;
    display: grid;
    place-items: center;
  }

  .pm-highlight-strip__grid span::after {
    display: none;
  }

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

  .pm-management-scope,
  .pm-enquiry__shell {
    grid-template-columns: 1fr;
  }

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

  .pm-orbit {
    min-height: 460px;
  }

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

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

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

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

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

  .pm-final-cta__actions {
    justify-content: flex-start;
  }

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

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

@media (max-width: 767.98px) {
  .pm-section {
    padding: 68px 0;
  }

  .pm-topbar__links {
    gap: 12px;
    font-size: 10px;
  }

  .pm-header__inner {
    min-height: 72px;
  }

  .pm-header__brand img {
    width: 150px;
  }

  .pm-hero {
    padding-top: 22px;
  }

  .pm-hero__title {
    font-size: clamp(42px, 12vw, 58px);
  }

  .pm-hero__description {
    font-size: 15px;
  }

  .pm-hero__proof {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .pm-system-grid,
  .pm-card-grid--3,
  .pm-card-grid--4,
  .pm-card-grid--5,
  .pm-budget-grid,
  .pm-why-grid,
  .pm-process-grid {
    grid-template-columns: 1fr;
  }

  .pm-service-card,
  .pm-dark-card,
  .pm-industry-card,
  .pm-process-grid article {
    min-height: auto;
  }

  .pm-service-card__title,
  .pm-dark-card h3,
  .pm-industry-card h3,
  .pm-process-grid h3 {
    margin-top: 28px;
  }

  .pm-management-scope {
    padding: 26px;
  }

  .pm-comparison-table {
    border: 0;
    background: transparent;
    overflow: visible;
  }

  .pm-comparison-table__row--head {
    display: none;
  }

  .pm-comparison-table__row {
    display: block;
    min-height: 0;
    margin-bottom: 12px;
    padding: 20px;
    border: 1px solid var(--pm-border);
    border-radius: 16px;
    background: #fff;
  }

  .pm-comparison-table__row>* {
    display: block;
    padding: 0;
    border: 0 !important;
  }

  .pm-comparison-table__row b {
    margin-bottom: 14px;
    font-size: 14px;
  }

  .pm-comparison-table__row span {
    position: relative;
    padding: 12px 0 12px 118px;
    border-top: 1px solid var(--pm-border) !important;
  }

  .pm-comparison-table__row span::before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    top: 12px;
    width: 105px;
    color: var(--pm-wine);
    font-size: 9px;
    font-weight: 800;
  }

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

  .pm-flow article {
    min-height: 150px;
  }

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

  .pm-orbit {
    min-height: 420px;
    border-radius: 24px;
    border-style: dashed;
  }

  .pm-orbit::before,
  .pm-orbit::after {
    display: none;
  }

  .pm-orbit__core {
    width: 105px;
    height: 105px;
  }

  .pm-orbit__item {
    position: static;
    margin: 8px;
  }

  .pm-orbit {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    padding: 150px 18px 18px;
  }

  .pm-orbit__core {
    top: 30px;
    transform: translateX(-50%);
  }

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

  .pm-reporting-ui__footer {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 8px;
  }

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

  .pm-form__full {
    grid-column: auto;
  }

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

  .pm-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .pm-footer__bottom {
    flex-direction: column;
  }

  .pm-floating {
    right: 10px;
    bottom: 10px;
    flex-direction: row;
  }

  .pm-floating__action {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 479.98px) {
  .pm-topbar__links a:first-child {
    display: none;
  }

  .pm-breadcrumb__list {
    font-size: 10px;
  }

  .pm-hero__actions,
  .pm-final-cta__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .pm-hero__actions .pm-btn,
  .pm-hero__actions .pm-link-arrow,
  .pm-final-cta__actions .pm-btn {
    width: 100%;
    justify-content: center;
  }

  .pm-hero-dashboard {
    padding: 15px;
  }

  .pm-hero-dashboard__channels,
  .pm-hero-dashboard__metrics {
    grid-template-columns: 1fr;
  }

  .pm-hero-dashboard__footer {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

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

  .pm-feature-panel {
    min-height: 0;
    padding: 28px 22px;
  }

  .pm-creative-formula {
    gap: 7px;
  }

  .pm-creative-formula span {
    padding: 10px;
  }

  .pm-budget-grid article strong {
    font-size: 30px;
  }

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

  .pm-reporting-ui {
    padding: 14px;
  }

  .pm-reporting-ui__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .pm-reporting-ui__chart {
    height: 150px;
    gap: 7px;
  }

  .pm-enquiry__copy,
  .pm-form {
    padding: 28px 20px;
  }

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

  .pm-footer__brand {
    grid-column: auto;
  }

  .pm-modal__panel {
    padding: 28px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}