
  :root {
    --pm-orange: #f35a22;
    --pm-orange-dark: #d84412;
    --pm-orange-soft: #fff0e9;
    --pm-ink: #171719;
    --pm-ink-2: #27272b;
    --pm-muted: #6f7178;
    --pm-line: #e8e8eb;
    --pm-surface: #ffffff;
    --pm-surface-2: #f7f7f5;
    --pm-cream: #fffaf6;
    --pm-green: #1f9d68;
    --pm-yellow: #ffcc66;
    --pm-shadow-sm: 0 12px 34px rgba(20, 20, 24, 0.08);
    --pm-shadow-lg: 0 34px 90px rgba(20, 20, 24, 0.14);
    --pm-radius-sm: 16px;
    --pm-radius-md: 24px;
    --pm-radius-lg: 34px;
    --pm-radius-xl: 48px;
    --pm-container: min(1180px, calc(100% - 40px));
  }

  * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body.pm-landing-body {
    margin: 0;
    background: var(--pm-surface-2);
    color: var(--pm-ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
  }

  body.pm-landing-body.pm-menu-open {
    overflow: hidden;
  }

  .pm-landing,
  .pm-landing button,
  .pm-landing input {
    font: inherit;
  }

  .pm-landing {
    min-height: 100vh;
    overflow: hidden;
    background:
      radial-gradient(circle at 10% 1%, rgba(243, 90, 34, 0.11), transparent 24%),
      radial-gradient(circle at 92% 15%, rgba(255, 194, 137, 0.20), transparent 25%),
      var(--pm-surface-2);
  }

  .pm-landing img,
  .pm-landing video {
    display: block;
    max-width: 100%;
  }

  .pm-landing a {
    color: inherit;
  }

  .pm-container {
    width: var(--pm-container);
    margin-inline: auto;
  }

  .pm-section {
    position: relative;
    padding: 112px 0;
  }

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

  .pm-section--dark {
    background: #161619;
    color: #fff;
  }

  .pm-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    color: var(--pm-orange-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .pm-kicker::before {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
  }

  .pm-section-title {
    max-width: 760px;
    margin: 0;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 0.98;
    letter-spacing: -0.055em;
    font-weight: 850;
  }

  .pm-section-title span {
    color: var(--pm-orange);
  }

  .pm-section-copy {
    max-width: 650px;
    margin: 24px 0 0;
    color: var(--pm-muted);
    font-size: clamp(17px, 1.6vw, 20px);
    line-height: 1.68;
  }

  .pm-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 56px;
  }

  .pm-section-head > p {
    max-width: 430px;
    margin: 0;
    color: var(--pm-muted);
    font-size: 17px;
    line-height: 1.7;
  }

  .pm-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 750;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
    cursor: pointer;
  }

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

  .pm-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .pm-btn--primary {
    background: var(--pm-orange);
    color: #fff;
    box-shadow: 0 14px 34px rgba(243, 90, 34, .28);
  }

  .pm-btn--primary:hover {
    background: var(--pm-orange-dark);
    box-shadow: 0 18px 42px rgba(243, 90, 34, .34);
  }

  .pm-btn--ghost {
    background: rgba(255,255,255,.82);
    border-color: var(--pm-line);
    color: var(--pm-ink);
  }

  .pm-btn--ghost:hover {
    border-color: rgba(243,90,34,.4);
    color: var(--pm-orange-dark);
  }

  .pm-btn--dark {
    background: #18181b;
    color: #fff;
  }

  .pm-btn--wide {
    min-height: 60px;
    padding-inline: 28px;
  }

  .pm-header {
    position: fixed;
    z-index: 100;
    top: 18px;
    left: 50%;
    width: min(1180px, calc(100% - 30px));
    transform: translateX(-50%);
    transition: top .3s ease, box-shadow .3s ease, background .3s ease;
  }

  .pm-header__bar {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    padding: 10px 12px 10px 20px;
    border: 1px solid rgba(255,255,255,.84);
    border-radius: 999px;
    background: rgba(255,255,255,.72);
    box-shadow: 0 18px 54px rgba(21,21,24,.08);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
  }

  .pm-header.is-scrolled {
    top: 8px;
  }

  .pm-header.is-scrolled .pm-header__bar {
    background: rgba(255,255,255,.92);
    box-shadow: 0 20px 60px rgba(21,21,24,.13);
  }

  .pm-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .pm-brand img {
    width: 142px;
    max-height: 48px;
    object-fit: contain;
  }

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

  .pm-nav a {
    position: relative;
    color: #46464b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
  }

  .pm-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -7px;
    height: 2px;
    border-radius: 4px;
    background: var(--pm-orange);
    transition: right .25s ease;
  }

  .pm-nav a:hover::after {
    right: 0;
  }

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

  .pm-header__actions .pm-btn {
    min-height: 48px;
    padding-inline: 18px;
    font-size: 14px;
  }

  .pm-menu-button {
    width: 48px;
    height: 48px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 0;
    border-radius: 50%;
    background: #171719;
    cursor: pointer;
  }

  .pm-menu-button span {
    width: 18px;
    height: 2px;
    border-radius: 99px;
    background: #fff;
    transition: transform .25s ease, opacity .25s ease;
  }

  .pm-menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .pm-menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .pm-menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .pm-mobile-menu {
    display: none;
    margin-top: 10px;
    padding: 18px;
    border-radius: 26px;
    background: rgba(255,255,255,.97);
    box-shadow: var(--pm-shadow-lg);
  }

  .pm-mobile-menu a:not(.pm-btn) {
    display: block;
    padding: 15px 8px;
    border-bottom: 1px solid var(--pm-line);
    color: var(--pm-ink);
    text-decoration: none;
    font-weight: 750;
  }

  .pm-mobile-menu__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 16px;
  }

  .pm-hero {
    position: relative;
    min-height: 940px;
    display: flex;
    align-items: center;
    padding: 150px 0 96px;
    isolation: isolate;
  }

  .pm-hero::before {
    content: "";
    position: absolute;
    z-index: -3;
    inset: 0;
    background:
      linear-gradient(130deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.86) 46%, rgba(255,247,241,.78) 100%),
      url("assets/photo-1504674900247-0877df9cc836.webp") center/cover;
  }

  .pm-hero::after {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0;
    background-image: radial-gradient(rgba(23,23,25,.075) 1px, transparent 1px);
    background-size: 26px 26px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 88%);
  }

  .pm-hero__glow {
    position: absolute;
    z-index: -1;
    width: 560px;
    height: 560px;
    right: -210px;
    top: 110px;
    border-radius: 50%;
    background: rgba(243,90,34,.18);
    filter: blur(100px);
    pointer-events: none;
  }

  .pm-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, .94fr) minmax(480px, 1.06fr);
    align-items: center;
    gap: 52px;
  }

  .pm-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px 9px 10px;
    border: 1px solid rgba(243,90,34,.18);
    border-radius: 999px;
    background: rgba(255,255,255,.78);
    box-shadow: 0 8px 24px rgba(30,30,34,.06);
    color: #47474d;
    font-size: 13px;
    font-weight: 750;
  }

  .pm-hero__badge i {
    width: 28px;
    height: 28px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: var(--pm-orange);
    color: #fff;
    font-style: normal;
    box-shadow: 0 0 0 7px rgba(243,90,34,.10);
  }

  .pm-hero h1 {
    max-width: 700px;
    margin: 28px 0 0;
    font-size: clamp(54px, 7vw, 92px);
    line-height: .92;
    letter-spacing: -0.068em;
    font-weight: 900;
  }

  .pm-hero h1 em {
    position: relative;
    color: var(--pm-orange);
    font-style: normal;
    white-space: nowrap;
  }

  .pm-hero h1 em::after {
    content: "";
    position: absolute;
    left: 5%;
    right: 0;
    bottom: -10px;
    height: 12px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='500' height='16' viewBox='0 0 500 16'%3E%3Cpath d='M2 11C120 2 328 3 498 8' fill='none' stroke='%23f35a22' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E") center/100% 100% no-repeat;
  }

  .pm-hero__text {
    max-width: 620px;
    margin: 30px 0 0;
    color: #5d5e65;
    font-size: clamp(18px, 1.7vw, 22px);
    line-height: 1.62;
  }

  .pm-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
  }

  .pm-hero__proof {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
    margin-top: 28px;
    color: #52535a;
    font-size: 13px;
    font-weight: 700;
  }

  .pm-hero__proof span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .pm-hero__proof svg {
    width: 17px;
    height: 17px;
    padding: 3px;
    border-radius: 50%;
    background: #e8f7ef;
    color: var(--pm-green);
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
  }

  .pm-hero-visual {
    position: relative;
    min-height: 650px;
    transform: translate3d(var(--pm-pointer-x,0), var(--pm-pointer-y,0),0);
    transition: transform .18s ease-out;
  }

  .pm-showcase {
    position: absolute;
    inset: 40px 0 0 42px;
    border: 1px solid rgba(255,255,255,.9);
    border-radius: 44px;
    background: rgba(255,255,255,.68);
    box-shadow: var(--pm-shadow-lg);
    backdrop-filter: blur(18px);
    overflow: hidden;
  }

  .pm-showcase__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .pm-showcase__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,15,17,.05) 30%, rgba(15,15,17,.90) 100%);
  }

  .pm-showcase__top {
    position: absolute;
    z-index: 2;
    left: 24px;
    right: 24px;
    top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .pm-showcase__restaurant {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 11px 8px 8px;
    border-radius: 999px;
    background: rgba(255,255,255,.88);
    color: var(--pm-ink);
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
  }

  .pm-showcase__restaurant i {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--pm-orange);
    color: #fff;
    font-style: normal;
    font-weight: 900;
  }

  .pm-showcase__restaurant strong,
  .pm-showcase__restaurant small {
    display: block;
  }

  .pm-showcase__restaurant strong {
    font-size: 13px;
  }

  .pm-showcase__restaurant small {
    margin-top: 2px;
    color: #77777e;
    font-size: 12px;
  }

  .pm-showcase__live {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(23,23,25,.74);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(10px);
  }

  .pm-showcase__live::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff6448;
    box-shadow: 0 0 0 0 rgba(255,100,72,.6);
    animation: pmPulse 1.8s infinite;
  }

  .pm-showcase__content {
    position: absolute;
    z-index: 2;
    left: 32px;
    right: 32px;
    bottom: 30px;
    color: #fff;
  }

  .pm-showcase__content .pm-chip {
    background: rgba(255,255,255,.15);
    color: #fff;
    border-color: rgba(255,255,255,.18);
  }

  .pm-showcase__content h3 {
    max-width: 440px;
    margin: 14px 0 8px;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1;
    letter-spacing: -.045em;
  }

  .pm-showcase__content p {
    max-width: 440px;
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: 14px;
    line-height: 1.5;
  }

  .pm-showcase__price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 18px;
  }

  .pm-showcase__price strong {
    font-size: 28px;
  }

  .pm-showcase__price button {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--pm-orange);
    color: #fff;
  }

  .pm-showcase__price svg {
    width: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
  }

  .pm-float-card {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,.88);
    border-radius: 18px;
    background: rgba(255,255,255,.88);
    box-shadow: 0 18px 50px rgba(28,28,31,.14);
    backdrop-filter: blur(16px);
    animation: pmFloat 5s ease-in-out infinite;
  }

  .pm-float-card__icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--pm-orange-soft);
    color: var(--pm-orange);
  }

  .pm-float-card svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
  }

  .pm-float-card strong,
  .pm-float-card small {
    display: block;
  }

  .pm-float-card strong {
    font-size: 13px;
  }

  .pm-float-card small {
    margin-top: 2px;
    color: var(--pm-muted);
    font-size: 12px;
  }

  .pm-float-card--video {
    left: -8px;
    top: 7px;
  }

  .pm-float-card--ar {
    right: -12px;
    bottom: 26px;
    animation-delay: -2.2s;
  }

  .pm-float-card--metric {
    right: -28px;
    top: 112px;
    animation-delay: -1.1s;
  }

  .pm-float-card--metric .pm-float-card__icon {
    background: #eaf8f1;
    color: var(--pm-green);
  }

  .pm-logo-strip {
    position: relative;
    z-index: 4;
    margin-top: -34px;
  }

  .pm-logo-strip__inner {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 20px 26px;
    border: 1px solid #fff;
    border-radius: 22px;
    background: rgba(255,255,255,.92);
    box-shadow: var(--pm-shadow-sm);
    overflow: hidden;
  }

  .pm-logo-strip__inner > span {
    flex: 0 0 auto;
    color: #8b8c91;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  .pm-marquee {
    display: flex;
    min-width: 0;
    overflow: hidden;
  }

  .pm-marquee__track {
    display: flex;
    align-items: center;
    gap: 34px;
    min-width: max-content;
    animation: pmMarquee 24s linear infinite;
  }

  .pm-marquee__track strong {
    color: #38383d;
    font-size: 16px;
    white-space: nowrap;
  }

  .pm-marquee__track i {
    color: var(--pm-orange);
    font-style: normal;
  }

  .pm-contrast-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .pm-contrast-card {
    position: relative;
    min-height: 530px;
    padding: 34px;
    border-radius: var(--pm-radius-lg);
    overflow: hidden;
  }

  .pm-contrast-card--old {
    border: 1px solid var(--pm-line);
    background: #f3f3f1;
  }

  .pm-contrast-card--new {
    background: #18181b;
    color: #fff;
    box-shadow: var(--pm-shadow-lg);
  }

  .pm-contrast-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.78);
    color: #5f6066;
    font-size: 12px;
    font-weight: 800;
  }

  .pm-contrast-card--new .pm-contrast-label {
    background: rgba(255,255,255,.10);
    color: #fff;
  }

  .pm-old-menu {
    margin-top: 42px;
    padding: 24px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 38px rgba(25,25,28,.06);
  }

  .pm-old-menu__row {
    display: grid;
    grid-template-columns: 92px 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 15px 0;
    border-bottom: 1px solid #ededee;
  }

  .pm-old-menu__row:last-child {
    border-bottom: 0;
  }

  .pm-old-menu__thumb {
    aspect-ratio: 1;
    border-radius: 12px;
    background: linear-gradient(135deg,#e6e6e4,#f4f4f2);
  }

  .pm-old-menu strong,
  .pm-old-menu small {
    display: block;
  }

  .pm-old-menu small {
    margin-top: 6px;
    color: #99999e;
  }

  .pm-old-menu b {
    color: #6f7076;
    font-size: 13px;
  }

  .pm-contrast-card h3 {
    margin: 30px 0 0;
    font-size: clamp(30px,3vw,44px);
    line-height: 1.04;
    letter-spacing: -.045em;
  }

  .pm-contrast-card > p {
    margin: 15px 0 0;
    color: var(--pm-muted);
    line-height: 1.65;
  }

  .pm-contrast-card--new > p {
    color: rgba(255,255,255,.64);
  }

  .pm-new-menu {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
    height: 270px;
    border-radius: 26px;
    overflow: hidden;
  }

  .pm-new-menu img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .pm-new-menu::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,transparent,rgba(0,0,0,.85));
  }

  .pm-new-menu__copy {
    position: absolute;
    z-index: 2;
    left: 22px;
    right: 22px;
    bottom: 20px;
  }

  .pm-new-menu__copy strong {
    display: block;
    font-size: 25px;
  }

  .pm-new-menu__copy span {
    display: block;
    margin-top: 6px;
    color: rgba(255,255,255,.72);
    font-size: 13px;
  }

  .pm-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    border: 1px solid rgba(20,20,23,.08);
    border-radius: 999px;
    background: #fff;
    color: #595a60;
    font-size: 12px;
    font-weight: 800;
  }

  .pm-tabs-shell {
    display: grid;
    grid-template-columns: 320px minmax(0,1fr);
    gap: 22px;
    padding: 22px;
    border: 1px solid var(--pm-line);
    border-radius: 38px;
    background: #fff;
    box-shadow: var(--pm-shadow-sm);
  }

  .pm-tab-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .pm-tab-button {
    display: grid;
    grid-template-columns: 46px 1fr auto;
    align-items: center;
    gap: 14px;
    min-height: 88px;
    padding: 13px;
    border: 1px solid transparent;
    border-radius: 20px;
    background: transparent;
    color: #52535a;
    text-align: left;
    cursor: pointer;
    transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
  }

  .pm-tab-button:hover {
    transform: translateX(3px);
    background: #faf8f6;
  }

  .pm-tab-button.is-active {
    border-color: rgba(243,90,34,.15);
    background: var(--pm-orange-soft);
    color: var(--pm-ink);
  }

  .pm-tab-button__icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: #f2f2f0;
    color: #77787e;
  }

  .pm-tab-button.is-active .pm-tab-button__icon {
    background: var(--pm-orange);
    color: #fff;
  }

  .pm-tab-button svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
  }

  .pm-tab-button strong,
  .pm-tab-button small {
    display: block;
  }

  .pm-tab-button strong {
    font-size: 15px;
  }

  .pm-tab-button small {
    margin-top: 5px;
    color: #919298;
    font-size: 12px;
    line-height: 1.4;
  }

  .pm-tab-button b {
    color: var(--pm-orange);
    font-size: 18px;
  }

  .pm-demo-stage {
    position: relative;
    min-height: 560px;
    border-radius: 28px;
    overflow: hidden;
    background: #1b1b1e;
  }

  .pm-demo-panel {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(.985);
    transition: opacity .35s ease, visibility .35s ease, transform .35s ease;
  }

  .pm-demo-panel.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }

  .pm-demo-panel video,
  .pm-demo-panel > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .pm-demo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,rgba(0,0,0,.05),rgba(0,0,0,.83));
  }

  .pm-demo-copy {
    position: absolute;
    z-index: 2;
    left: 34px;
    right: 34px;
    bottom: 32px;
    color: #fff;
  }

  .pm-demo-copy h3 {
    max-width: 580px;
    margin: 14px 0 0;
    font-size: clamp(34px,4vw,58px);
    line-height: .98;
    letter-spacing: -.05em;
  }

  .pm-demo-copy p {
    max-width: 550px;
    margin: 16px 0 0;
    color: rgba(255,255,255,.72);
    line-height: 1.6;
  }

  .pm-ar-scene {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg,rgba(0,0,0,.08),rgba(0,0,0,.42)),
      url("assets/photo-1559339352-11d035aa65de.webp") center/cover;
  }



  .pm-ar-grid {
    position: absolute;
    inset: 15% 10%;
    border: 1px solid rgba(255,255,255,.4);
    background-image:
      linear-gradient(rgba(255,255,255,.12) 1px,transparent 1px),
      linear-gradient(90deg,rgba(255,255,255,.12) 1px,transparent 1px);
    background-size: 44px 44px;
    transform: perspective(600px) rotateX(62deg);
    transform-origin: center bottom;
    opacity: .55;
  }

  .pm-analytics-panel {
    height: 100%;
    display: grid;
    grid-template-rows: auto 1fr;
    padding: 28px;
    background: linear-gradient(145deg,#171719,#29292d);
  }

  .pm-analytics-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
  }

  .pm-analytics-top strong {
    font-size: 20px;
  }

  .pm-analytics-top span {
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.68);
    font-size: 12px;
  }

  .pm-analytics-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px;
    margin-top: 22px;
  }

  .pm-metric {
    padding: 18px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    background: rgba(255,255,255,.055);
    color: #fff;
  }

  .pm-metric span,
  .pm-metric strong {
    display: block;
  }

  .pm-metric span {
    color: rgba(255,255,255,.56);
    font-size: 12px;
  }

  .pm-metric strong {
    margin-top: 9px;
    font-size: 28px;
  }

  .pm-chart {
    position: relative;
    min-height: 280px;
    margin-top: 14px;
    border-radius: 22px;
    overflow: hidden;
    background:
      linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
      linear-gradient(90deg,rgba(255,255,255,.055) 1px, transparent 1px);
    background-size: 42px 42px;
  }

  .pm-chart svg {
    position: absolute;
    inset: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    overflow: visible;
  }

  .pm-chart path {
    fill: none;
    stroke: var(--pm-orange);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 8px 14px rgba(243,90,34,.35));
  }

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

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

  .pm-feature:hover {
    transform: translateY(-5px);
    border-color: rgba(243,90,34,.20);
    box-shadow: var(--pm-shadow-sm);
  }

  .pm-feature--wide {
    grid-column: span 7;
  }

  .pm-feature--medium {
    grid-column: span 5;
  }

  .pm-feature--third {
    grid-column: span 4;
  }

  .pm-feature--dark {
    background: #1a1a1d;
    color: #fff;
    border-color: #1a1a1d;
  }

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

  .pm-feature__icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background: var(--pm-orange-soft);
    color: var(--pm-orange);
  }

  .pm-feature--dark .pm-feature__icon,
  .pm-feature--orange .pm-feature__icon {
    background: rgba(255,255,255,.13);
    color: #fff;
  }

  .pm-feature__icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
  }

  .pm-feature h3 {
    max-width: 430px;
    margin: 24px 0 0;
    font-size: 28px;
    line-height: 1.05;
    letter-spacing: -.035em;
  }

  .pm-feature p {
    max-width: 480px;
    margin: 13px 0 0;
    color: var(--pm-muted);
    line-height: 1.65;
  }

  .pm-feature--dark p,
  .pm-feature--orange p {
    color: rgba(255,255,255,.72);
  }

  .pm-feature__visual {
    position: absolute;
    right: -20px;
    bottom: -28px;
    width: 47%;
    aspect-ratio: 1;
    border-radius: 28px;
    background: linear-gradient(135deg,#fff3eb,#ffd4c1);
    transform: rotate(-7deg);
  }

  .pm-feature__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
  }

  .pm-feature__mini-ui {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 46%;
    padding: 15px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    background: rgba(255,255,255,.08);
  }

  .pm-feature__mini-ui span {
    display: block;
    height: 9px;
    margin-bottom: 10px;
    border-radius: 99px;
    background: rgba(255,255,255,.16);
  }

  .pm-feature__mini-ui span:nth-child(2) {
    width: 70%;
  }

  .pm-feature__mini-ui span:nth-child(3) {
    width: 48%;
  }

  .pm-gallery {
    display: grid;
    grid-template-columns: 1.18fr .82fr;
    gap: 18px;
  }

  .pm-gallery__side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .pm-gallery-card {
    position: relative;
    min-height: 320px;
    border-radius: 30px;
    overflow: hidden;
    color: #fff;
  }

  .pm-gallery-card--large {
    min-height: 658px;
  }

  .pm-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.2,.8,.2,1);
  }

  .pm-gallery-card:hover img {
    transform: scale(1.06);
  }

  .pm-gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,rgba(0,0,0,.02),rgba(0,0,0,.78));
  }

  .pm-gallery-card__copy {
    position: absolute;
    z-index: 2;
    left: 24px;
    right: 24px;
    bottom: 24px;
  }

  .pm-gallery-card__copy span {
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.16);
    backdrop-filter: blur(10px);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
  }

  .pm-gallery-card__copy h3 {
    margin: 12px 0 0;
    font-size: clamp(26px,3vw,42px);
    line-height: 1.02;
    letter-spacing: -.04em;
  }

  .pm-gallery-card__copy p {
    margin: 10px 0 0;
    color: rgba(255,255,255,.72);
    line-height: 1.5;
  }

  .pm-process {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
    counter-reset: pmstep;
  }

  .pm-step {
    position: relative;
    min-height: 305px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 26px;
    background: rgba(255,255,255,.05);
    overflow: hidden;
    counter-increment: pmstep;
  }

  .pm-step::before {
    content: "0" counter(pmstep);
    position: absolute;
    top: 18px;
    right: 20px;
    color: rgba(255,255,255,.10);
    font-size: 58px;
    font-weight: 900;
    letter-spacing: -.06em;
  }

  .pm-step__icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--pm-orange);
    color: #fff;
  }

  .pm-step__icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
  }

  .pm-step h3 {
    margin: 82px 0 0;
    font-size: 24px;
    letter-spacing: -.035em;
  }

  .pm-step p {
    margin: 12px 0 0;
    color: rgba(255,255,255,.58);
    line-height: 1.65;
  }

  .pm-partner {
    position: relative;
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    gap: 24px;
    padding: 44px;
    border-radius: 38px;
    background: linear-gradient(135deg,#fff6f0,#fff 50%,#f5f1ed);
    border: 1px solid #fff;
    box-shadow: var(--pm-shadow-sm);
    overflow: hidden;
  }

  .pm-partner::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: -110px;
    bottom: -190px;
    border-radius: 50%;
    background: rgba(243,90,34,.14);
    filter: blur(10px);
  }

  .pm-partner__copy {
    position: relative;
    z-index: 2;
  }

  .pm-partner__copy h2 {
    margin: 0;
    max-width: 650px;
    font-size: clamp(42px,5vw,70px);
    line-height: .96;
    letter-spacing: -.055em;
  }

  .pm-partner__copy p {
    max-width: 590px;
    margin: 22px 0 0;
    color: var(--pm-muted);
    font-size: 18px;
    line-height: 1.68;
  }

  .pm-partner__list {
    display: grid;
    gap: 12px;
    margin-top: 28px;
  }

  .pm-partner__list span {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #424248;
    font-weight: 700;
  }

  .pm-partner__list i {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: var(--pm-orange);
    font-style: normal;
    box-shadow: 0 8px 24px rgba(20,20,23,.07);
  }

  .pm-partner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
  }

  .pm-partner__visual {
    position: relative;
    z-index: 2;
    min-height: 560px;
  }

  .pm-partner-phone {
    position: absolute;
    width: 260px;
    height: 530px;
    border: 9px solid #1b1b1e;
    border-radius: 38px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 34px 80px rgba(20,20,23,.20);
  }

  .pm-partner-phone--one {
    left: 20px;
    top: 10px;
    transform: rotate(-8deg);
  }

  .pm-partner-phone--two {
    right: 8px;
    bottom: 0;
    transform: rotate(7deg);
  }

  .pm-partner-phone__top {
    height: 120px;
    padding: 22px 18px;
    background: #1b1b1e;
    color: #fff;
  }

  .pm-partner-phone__top small,
  .pm-partner-phone__top strong {
    display: block;
  }

  .pm-partner-phone__top small {
    color: rgba(255,255,255,.52);
    font-size: 12px;
  }

  .pm-partner-phone__top strong {
    margin-top: 8px;
    font-size: 21px;
  }

  .pm-partner-phone__body {
    padding: 18px;
  }

  .pm-partner-metric {
    padding: 16px;
    border-radius: 16px;
    background: #f6f5f3;
    margin-bottom: 11px;
  }

  .pm-partner-metric span,
  .pm-partner-metric strong {
    display: block;
  }

  .pm-partner-metric span {
    color: #8b8c92;
    font-size: 12px;
  }

  .pm-partner-metric strong {
    margin-top: 7px;
    font-size: 22px;
  }

  .pm-partner-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid #eeeef0;
  }

  .pm-partner-row i {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--pm-orange-soft);
  }

  .pm-partner-row strong,
  .pm-partner-row small {
    display: block;
  }

  .pm-partner-row strong {
    font-size: 12px;
  }

  .pm-partner-row small {
    margin-top: 3px;
    color: #999aa0;
    font-size: 12px;
  }

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

  .pm-plan {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 30px;
    border: 1px solid var(--pm-line);
    border-radius: 28px;
    background: #fff;
    transition: transform .28s ease, box-shadow .28s ease;
  }

  .pm-plan:hover {
    transform: translateY(-6px);
    box-shadow: var(--pm-shadow-sm);
  }

  .pm-plan--featured {
    border-color: #1b1b1e;
    background: #1b1b1e;
    color: #fff;
    box-shadow: var(--pm-shadow-lg);
  }

  .pm-plan__badge {
    position: absolute;
    top: 22px;
    right: 22px;
    padding: 7px 9px;
    border-radius: 999px;
    background: var(--pm-orange);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
  }

  .pm-plan__name {
    font-size: 18px;
    font-weight: 800;
  }

  .pm-plan__description {
    min-height: 48px;
    margin-top: 8px;
    color: var(--pm-muted);
    font-size: 14px;
    line-height: 1.5;
  }

  .pm-plan--featured .pm-plan__description {
    color: rgba(255,255,255,.56);
  }

  .pm-plan__price {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    margin-top: 28px;
  }

  .pm-plan__price span:first-child {
    padding-bottom: 9px;
    color: var(--pm-muted);
    font-size: 14px;
  }

  .pm-plan__price strong {
    font-size: clamp(46px,5vw,66px);
    line-height: .9;
    letter-spacing: -.055em;
  }

  .pm-plan__price span:last-child {
    padding-bottom: 8px;
    color: var(--pm-muted);
    font-size: 13px;
  }

  .pm-plan__saving {
    display: inline-flex;
    align-self: flex-start;
    margin-top: 14px;
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--pm-orange-soft);
    color: var(--pm-orange-dark);
    font-size: 12px;
    font-weight: 800;
  }

  .pm-plan--featured .pm-plan__saving {
    background: rgba(255,255,255,.11);
    color: #fff;
  }

  .pm-plan ul {
    display: grid;
    gap: 13px;
    margin: 30px 0;
    padding: 0;
    list-style: none;
  }

  .pm-plan li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #56575d;
    font-size: 14px;
    line-height: 1.45;
  }

  .pm-plan--featured li {
    color: rgba(255,255,255,.72);
  }

  .pm-plan li svg {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    padding: 4px;
    border-radius: 50%;
    background: #eaf7f0;
    color: var(--pm-green);
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
  }

  .pm-plan .pm-btn {
    margin-top: auto;
  }

  .pm-faq {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 56px;
    align-items: start;
  }

  .pm-faq__aside {
    position: sticky;
    top: 120px;
  }

  .pm-faq__aside h2 {
    margin: 0;
    font-size: clamp(40px,5vw,64px);
    line-height: .97;
    letter-spacing: -.055em;
  }

  .pm-faq__aside p {
    margin: 20px 0 0;
    color: var(--pm-muted);
    line-height: 1.7;
  }

  .pm-faq-list {
    border-top: 1px solid var(--pm-line);
  }

  .pm-faq-item {
    border-bottom: 1px solid var(--pm-line);
  }

  .pm-faq-button {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 42px;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    border: 0;
    background: transparent;
    color: var(--pm-ink);
    text-align: left;
    cursor: pointer;
  }

  .pm-faq-button span:first-child {
    font-size: 18px;
    font-weight: 800;
  }

  .pm-faq-button i {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #f0efed;
    color: #6b6c72;
    font-style: normal;
    font-size: 24px;
    transition: transform .3s ease, background .3s ease, color .3s ease;
  }

  .pm-faq-item.is-open .pm-faq-button i {
    transform: rotate(45deg);
    background: var(--pm-orange);
    color: #fff;
  }

  .pm-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
  }

  .pm-faq-answer p {
    margin: 0;
    padding: 0 64px 24px 0;
    color: var(--pm-muted);
    line-height: 1.72;
  }

  .pm-final {
    padding: 50px 0 34px;
    background: #151518;
    color: #fff;
  }

  .pm-final-card {
    position: relative;
    min-height: 520px;
    display: grid;
    place-items: center;
    padding: 64px 26px;
    border-radius: 40px;
    overflow: hidden;
    text-align: center;
    isolation: isolate;
  }

  .pm-final-card::before {
    content: "";
    position: absolute;
    z-index: -2;
    inset: 0;
    background:
      linear-gradient(180deg,rgba(10,10,12,.35),rgba(10,10,12,.92)),
      url("assets/photo-1541544741938-0af808871cc0.webp") center/cover;
  }

  .pm-final-card::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 540px;
    height: 540px;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    background: rgba(243,90,34,.26);
    filter: blur(100px);
  }

  .pm-final-card h2 {
    max-width: 900px;
    margin: 0 auto;
    font-size: clamp(48px,7vw,92px);
    line-height: .92;
    letter-spacing: -.065em;
  }

  .pm-final-card p {
    max-width: 650px;
    margin: 24px auto 0;
    color: rgba(255,255,255,.68);
    font-size: 18px;
    line-height: 1.65;
  }

  .pm-final-card .pm-hero__actions {
    justify-content: center;
  }

  .pm-final-card .pm-btn--ghost {
    background: rgba(255,255,255,.10);
    border-color: rgba(255,255,255,.16);
    color: #fff;
  }

  .pm-footer {
    padding: 44px 0 16px;
  }

  .pm-footer__top {
    display: grid;
    grid-template-columns: 1.3fr repeat(3,.7fr);
    gap: 36px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,.09);
  }

  .pm-footer__brand img {
    width: 150px;
    filter: brightness(0) invert(1);
  }

  .pm-footer__brand p {
    max-width: 350px;
    margin: 20px 0 0;
    color: rgba(255,255,255,.48);
    line-height: 1.65;
  }

  .pm-footer h4 {
    margin: 0 0 16px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .08em;
  }

  .pm-footer a {
    display: block;
    margin: 11px 0;
    color: rgba(255,255,255,.54);
    text-decoration: none;
    font-size: 14px;
  }

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

  .pm-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    color: rgba(255,255,255,.35);
    font-size: 12px;
  }

  .pm-back-top {
    position: fixed;
    z-index: 80;
    right: 22px;
    bottom: 22px;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: #18181b;
    color: #fff;
    box-shadow: 0 16px 42px rgba(20,20,23,.24);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
    cursor: pointer;
  }

  .pm-back-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .pm-back-top svg {
    width: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
  }

  [data-pm-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s cubic-bezier(.2,.8,.2,1), transform .75s cubic-bezier(.2,.8,.2,1);
  }

  [data-pm-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  @keyframes pmPulse {
    0% { box-shadow: 0 0 0 0 rgba(255,100,72,.55); }
    70% { box-shadow: 0 0 0 9px rgba(255,100,72,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,100,72,0); }
  }

  @keyframes pmFloat {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  @keyframes pmMarquee {
    to { transform: translateX(-50%); }
  }

  @keyframes pmPlate {
    0%,100% { transform: translate(-50%,-50%) rotateX(55deg) rotateZ(-7deg) translateY(0); }
    50% { transform: translate(-50%,-50%) rotateX(55deg) rotateZ(-2deg) translateY(-9px); }
  }

  @media (max-width: 1080px) {
    .pm-nav,
    .pm-header__actions > .pm-btn {
      display: none;
    }

    .pm-menu-button {
      display: flex;
    }

    .pm-mobile-menu.is-open {
      display: block;
    }

    .pm-hero {
      min-height: auto;
      padding-top: 150px;
    }

    .pm-hero__grid,
    .pm-partner,
    .pm-faq {
      grid-template-columns: 1fr;
    }

    .pm-hero__copy {
      text-align: center;
    }

    .pm-hero__text {
      margin-inline: auto;
    }

    .pm-hero__actions,
    .pm-hero__proof {
      justify-content: center;
    }

    .pm-hero-visual {
      width: min(760px,100%);
      margin: 12px auto 0;
    }

    .pm-showcase {
      inset-inline: 40px;
    }

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

    .pm-tab-list {
      display: grid;
      grid-template-columns: repeat(4,1fr);
    }

    .pm-tab-button {
      grid-template-columns: 42px 1fr;
    }

    .pm-tab-button b {
      display: none;
    }

    .pm-tab-button small {
      display: none;
    }

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

    .pm-feature--wide,
    .pm-feature--medium,
    .pm-feature--third {
      grid-column: span 1;
    }

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

    .pm-partner__visual {
      width: min(620px,100%);
      margin-inline: auto;
    }

    .pm-faq__aside {
      position: static;
    }

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

  @media (max-width: 760px) {
    :root {
      --pm-container: min(100% - 24px, 1180px);
    }

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

    .pm-section-head {
      display: block;
    }

    .pm-section-head > p {
      margin-top: 22px;
    }

    .pm-header {
      width: calc(100% - 18px);
      top: 8px;
    }

    .pm-header__bar {
      min-height: 64px;
      padding-left: 14px;
    }

    .pm-brand img {
      width: 122px;
    }

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

    .pm-hero {
      padding: 124px 0 64px;
    }

    .pm-hero h1 {
      font-size: clamp(48px,15vw,70px);
    }

    .pm-hero__badge {
      font-size: 12px;
    }

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

    .pm-hero-visual {
      min-height: 540px;
    }

    .pm-showcase {
      inset: 42px 12px 16px;
      border-radius: 30px;
    }

    .pm-showcase__top {
      left: 15px;
      right: 15px;
      top: 15px;
    }

    .pm-showcase__content {
      left: 20px;
      right: 20px;
      bottom: 20px;
    }

    .pm-float-card--video {
      left: 0;
      top: 0;
    }

    .pm-float-card--metric {
      display: none;
    }

    .pm-float-card--ar {
      right: -4px;
      bottom: 0;
    }

    .pm-logo-strip {
      margin-top: 0;
    }

    .pm-logo-strip__inner {
      border-radius: 18px;
    }

    .pm-contrast-grid,
    .pm-gallery,
    .pm-price-grid,
    .pm-bento {
      grid-template-columns: 1fr;
    }

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

    .pm-gallery-card--large {
      min-height: 470px;
    }

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

    .pm-tab-button {
      min-height: 72px;
      padding: 10px;
    }

    .pm-demo-stage {
      min-height: 470px;
    }

    .pm-demo-copy {
      left: 22px;
      right: 22px;
      bottom: 22px;
    }

    .pm-feature {
      min-height: 300px;
    }

    .pm-feature__visual,
    .pm-feature__mini-ui {
      opacity: .65;
    }

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

    .pm-partner {
      padding: 28px;
    }

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

    .pm-partner-phone {
      width: 210px;
      height: 430px;
    }

    .pm-partner-phone--one {
      left: -8px;
    }

    .pm-partner-phone--two {
      right: -8px;
    }

    .pm-faq-answer p {
      padding-right: 0;
    }

    .pm-final-card {
      min-height: 470px;
      border-radius: 28px;
    }

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

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

    .pm-footer__bottom {
      display: block;
    }

    .pm-footer__bottom span {
      display: block;
      margin-top: 8px;
    }
  }

  @media (max-width: 460px) {
    .pm-footer__top {
      grid-template-columns: 1fr;
    }

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

    .pm-float-card {
      padding: 9px 10px;
    }

    .pm-float-card__icon {
      width: 36px;
      height: 36px;
    }

    .pm-float-card small {
      display: none;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    *,*::before,*::after {
      scroll-behavior: auto !important;
      animation-duration: .01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: .01ms !important;
    }

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