/* A főoldal arculata.
 *
 * Saját névtérben (`pm-`) él, nem az `orbit-` osztályokat írja felül: így az
 * aloldalak, a foglaló és a chat stílusai érintetlenek maradnak, és nincs
 * felülírásháború két nagy stíluslap között. Az `.orbit-home` gyökér megmarad,
 * mert arra épül a háttérszín és a sütipanel igazítása.
 *
 * A folyamatosan futó mozgásokat (aurora, fénysáv, halo) az orbit.css
 * `prefers-reduced-motion` blokkja kapcsolja le, mert az `.orbit-home *`
 * mindegyikre vonatkozik.
 */

.pm-home {
  --pm-bg: #0a0912;
  --pm-panel: #14121f;
  --pm-panel-2: #191627;
  --pm-line: #2b2542;
  --pm-line-soft: #241f38;
  --pm-text: #f4effc;
  --pm-muted: #a79dbd;
  --pm-dim: #837a9c;
  --pm-accent: #b9a2ff;
  --pm-accent-deep: #7c4dff;
  --pm-max: 1180px;
  --pm-gutter: clamp(20px, 4vw, 40px);
  background: var(--pm-bg);
  color: var(--pm-text);
  position: relative;
  isolation: isolate;
  overflow: clip;
}

.pm-home ::selection { background: #6f46d8; color: #fff; }

/* ---- Háttér: helyben maradó környezeti fény ----------------------------- */

.pm-aurora { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: clip; }
.pm-aurora span {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .5;
}
.pm-aurora span:nth-child(1) {
  width: 46vw; height: 46vw; top: -12vw; right: -8vw;
  background: radial-gradient(circle, #7d4bff88, transparent 68%);
}
.pm-aurora span:nth-child(2) {
  width: 38vw; height: 38vw; top: 52vh; left: -14vw;
  background: radial-gradient(circle, #5b3ad866, transparent 70%);
}
.pm-aurora span:nth-child(3) {
  width: 52vw; height: 30vw; bottom: 6vh; left: 26vw;
  background: radial-gradient(ellipse, #8b5cf64d, transparent 72%);
}

/* ---- Puha, sötétlila fényszalagok -------------------------------------- */

/* A négy nagy fényfolt helye, szöge és elmosása állandó. Csak az opacity
   pulzál, eltérő ritmusban; a maximum a korábbi sötétlila fényerő marad. */
.pm-home .pm-veins {
  position: absolute; inset: 0; z-index: -1;
  pointer-events: none; overflow: clip; contain: paint;
}
.pm-light-lane {
  position: absolute;
  width: var(--light-width, clamp(650px, 92vw, 1280px));
  height: clamp(300px, 32vw, 460px);
  transform: rotate(var(--light-angle));
  --light-peak: .72;
  --light-dim: .22;
}
.pm-light-lane:nth-child(1) {
  top: 3%; left: -19%; --light-angle: -32deg;
  --light-time: 15s; --light-delay: -6s;
}
.pm-light-lane:nth-child(2) {
  top: 29%; left: 43%; --light-angle: 43deg;
  --light-width: clamp(620px, 78vw, 1120px);
  --light-time: 19s; --light-delay: -13s;
}
.pm-light-lane:nth-child(3) {
  top: 57%; left: -8%; --light-angle: 18deg;
  --light-time: 17s; --light-delay: -2s;
}
.pm-light-lane:nth-child(4) {
  top: 82%; left: 31%; --light-angle: -46deg;
  --light-width: clamp(680px, 85vw, 1200px);
  --light-time: 22s; --light-delay: -17s;
}
.pm-light-band {
  position: absolute; left: 0; top: 0;
  width: 100%; height: 100%;
  background: radial-gradient(ellipse closest-side,
    #6438ad70 0%, #5b30995c 15%, #50268238 35%,
    #42206d1a 55%, #36195208 75%, #36195200 100%);
  filter: blur(48px);
  opacity: var(--light-peak);
  will-change: opacity;
  animation: pm-light-pulse var(--light-time) ease-in-out infinite;
  animation-delay: var(--light-delay);
}
@keyframes pm-light-pulse {
  0%, 100% { opacity: var(--light-dim); }
  50% { opacity: var(--light-peak); }
}
@media (max-width: 680px) {
  .pm-light-lane { width: 660px; height: 300px; --light-peak: .5; --light-dim: .15; }
  .pm-light-lane:nth-child(1) { left: -65%; }
  .pm-light-lane:nth-child(2) { left: 6%; }
  .pm-light-lane:nth-child(3) { left: -45%; }
  .pm-light-lane:nth-child(4) { left: -8%; }
  .pm-light-band { filter: blur(36px); }
}
@media (prefers-reduced-motion: reduce) {
  .pm-light-band { animation: none; will-change: auto; }
}

/* ---- Közös építőelemek -------------------------------------------------- */

.pm-home :where(h1, h2, h3) { margin: 0; letter-spacing: -.035em; font-weight: 700; text-wrap: balance; }
.pm-home :where(p, ul, ol) { margin: 0; }
.pm-home ul, .pm-home ol { list-style: none; padding: 0; }

.pm-section { max-width: var(--pm-max); margin: 0 auto; padding: clamp(56px, 7vw, 104px) var(--pm-gutter); }
.pm-section-head { max-width: 760px; margin-bottom: clamp(32px, 4vw, 52px); }
.pm-section-head h2 { font-size: clamp(26px, 3.1vw, 40px); line-height: 1.12; margin-bottom: 12px; }

.pm-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--pm-dim); margin-bottom: 16px;
}
.pm-eyebrow-rule { display: block; width: 54px; height: 1px; background: linear-gradient(90deg, #6a5a92, transparent); }

.pm-muted { color: var(--pm-muted); font-size: clamp(14px, 1.2vw, 16px); line-height: 1.6; }

.pm-card {
  background: linear-gradient(158deg, var(--pm-panel-2), var(--pm-panel));
  border: 1px solid var(--pm-line);
  border-radius: 18px;
}

.pm-feature-icon {
  display: grid; place-items: center; flex: none;
  width: 40px; height: 40px; border-radius: 11px;
  background: linear-gradient(140deg, #3a2c63, #241d3c);
  border: 1px solid #453a6b;
  color: var(--pm-accent);
}
.pm-feature-icon svg { width: 19px; height: 19px; }

.pm-text-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 600; color: var(--pm-accent);
  transition: gap .24s ease, color .24s ease;
}
.pm-text-link svg { width: 16px; height: 16px; }
.pm-text-link:hover { gap: 13px; color: #d8c7ff; }

.pm-quiet-link {
  display: inline-block; margin-top: 16px;
  font-size: 13px; color: var(--pm-muted);
  text-decoration: underline; text-underline-offset: 3px;
  transition: color .2s ease;
}
.pm-quiet-link:hover { color: var(--pm-accent); }

/* ---- Fejléc ------------------------------------------------------------- */

/* Ragadós fejléc: a tartalom alatta fut el, ezért kell mögé egy áttetsző réteg.
   A tetején a hátterével azonos, tehát nem látszik; görgetve elválik. */
.pm-header {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--pm-bg) 78%, transparent);
  backdrop-filter: saturate(170%) blur(16px);
  -webkit-backdrop-filter: saturate(170%) blur(16px);
}
.pm-header-in {
  max-width: var(--pm-max); margin: 0 auto;
  padding: 16px var(--pm-gutter);
  display: flex; align-items: center; gap: clamp(18px, 3vw, 44px);
}
.pm-wordmark { display: inline-flex; align-items: center; gap: 11px; font-size: 17px; font-weight: 650; letter-spacing: -.02em; white-space: nowrap; }
.pm-wordmark-mark { width: auto; height: 42px; display: block; }
.pm-header nav { display: flex; gap: clamp(16px, 2.2vw, 32px); margin-left: auto; }
.pm-header nav a { font-size: 13.5px; color: #cfc6e4; transition: color .2s ease; }
.pm-header nav a:hover { color: #fff; }
.pm-header-cta { margin-left: clamp(12px, 2vw, 28px); padding: 10px 18px; font-size: 13px; border-radius: 999px; flex: none; }
.pm-header-cta svg { width: 15px; height: 15px; }
.pm-menu-toggle { display: none; }

/* ---- Hero --------------------------------------------------------------- */

.pm-hero { position: relative; max-width: var(--pm-max); margin: 0 auto; padding: clamp(24px, 3vw, 44px) var(--pm-gutter) clamp(48px, 6vw, 88px); }
.pm-hero-in { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(28px, 4vw, 64px); align-items: start; }
.pm-hero-copy { padding-top: clamp(12px, 2vw, 34px); }
.pm-hero h1 { font-size: clamp(34px, 4.3vw, 58px); line-height: 1.04; letter-spacing: -.04em; }
.pm-hero h1 span { display: block; color: var(--pm-accent); }
.pm-lead { margin-top: 18px; font-size: clamp(15px, 1.4vw, 19px); line-height: 1.5; color: #d5cde8; }

.pm-price-chip {
  display: inline-block; margin-top: 26px; padding: 11px 20px;
  border: 1px solid #443a68; border-radius: 999px;
  background: #ffffff08;
  font-size: 14px; font-weight: 600; color: #ece4ff;
}

.pm-hero-cta { display: inline-flex; margin-top: 20px; padding: 15px 26px; border-radius: 14px; font-size: 14.5px; }
.pm-hero-cta svg { width: 17px; height: 17px; }
.pm-hero-note { margin-top: 18px; max-width: 460px; font-size: 13.5px; line-height: 1.6; color: var(--pm-muted); }

.pm-hero-aside { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: clamp(14px, 2vw, 26px); align-items: start; }

/* Álló kép, ami kitölti a keretet; a felirat rákerül, nem alá. A színátmenet
   fölül teljesen átlátszó, hogy az arc szabadon maradjon, lent pedig sötét
   lilába megy, hogy a szöveg minden képen olvasható legyen. */
.pm-portrait {
  position: relative; margin: 0; overflow: hidden;
  border: 1px solid var(--pm-line);
  border-radius: 20px;
  background: var(--pm-panel);
  box-shadow: 0 30px 90px #05030f80;
}
.pm-portrait img {
  display: block; width: 100%; height: 100%;
  aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 18%;
}
.pm-portrait figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: grid; gap: 7px; padding: 96px 22px 22px;
  background: linear-gradient(to bottom, #1a0f3300 0%, #170c2e59 34%, #150a2ce6 68%, #100722 100%);
}
.pm-portrait-name { display: flex; align-items: center; gap: 9px; font-size: 14.5px; font-weight: 650; }
.pm-portrait-name img { width: auto; height: 30px; aspect-ratio: auto; object-fit: contain; }
.pm-portrait strong { font-size: 15px; font-weight: 650; }
.pm-portrait figcaption > span:last-child { font-size: 13px; line-height: 1.55; color: var(--pm-muted); }

.pm-hero-stamp {
  margin: 0; text-align: right;
  font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  line-height: 2; color: var(--pm-dim);
}
.pm-stamp-rule { display: block; width: 1px; height: 84px; margin: 14px 0 0 auto; background: linear-gradient(#5b4d84, transparent); }

/* ---- Referencia --------------------------------------------------------- */

.pm-reference-card { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(24px, 3.4vw, 54px); padding: clamp(24px, 3vw, 42px); align-items: center; }
.pm-reference h2 { font-size: clamp(28px, 3.4vw, 42px); line-height: 1.08; }
.pm-reference-claim { margin-top: 12px; font-size: clamp(15px, 1.4vw, 18px); font-weight: 650; letter-spacing: -.02em; }
.pm-reference .pm-muted { margin-top: 10px; }

.pm-feature-list { display: grid; gap: 10px; margin-top: 26px; }
.pm-feature-list li {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 14px; border-radius: 13px;
  background: #ffffff05; border: 1px solid var(--pm-line-soft);
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.pm-feature-list li:hover { border-color: #4b3f74; background: #ffffff0a; transform: translateX(3px); }
.pm-feature-list strong { display: block; font-size: 14px; font-weight: 650; }
.pm-feature-list small { display: block; margin-top: 3px; font-size: 12.5px; line-height: 1.45; color: var(--pm-muted); }
.pm-reference .pm-text-link { margin-top: 24px; }

.pm-reference-shot { margin: 0; }
.pm-shot-frame {
  position: relative; overflow: hidden;
  border: 1px solid #3a3159; border-radius: 14px;
  background: #0d0b17;
  box-shadow: 0 26px 70px #04020c80;
}
.pm-shot-frame img { display: block; width: 100%; height: auto; }
/* Lassan átfutó fénysáv: egyetlen mozgó elem, 9 másodpercenként egyszer. */
.pm-shot-sheen {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(105deg, transparent 38%, #ffffff14 48%, transparent 58%);
  transform: translateX(-120%);
  animation: pm-sheen 9s ease-in-out 2s infinite;
}
@keyframes pm-sheen {
  0%, 62% { transform: translateX(-120%); }
  92%, 100% { transform: translateX(120%); }
}
.pm-reference-shot figcaption { margin-top: 12px; text-align: center; font-size: 12px; color: var(--pm-dim); }

/* ---- Folyamat ----------------------------------------------------------- */

.pm-flow-track {
  --pm-flow-gap: clamp(10px, 1.4vw, 20px);
  display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: var(--pm-flow-gap);
}
.pm-step { position: relative; text-align: center; }
.pm-step h3 { margin-top: 16px; font-size: 13.5px; line-height: 1.35; font-weight: 650; }
.pm-step p { margin-top: 8px; font-size: 12px; line-height: 1.5; color: var(--pm-muted); }

.pm-step-dot {
  position: relative; display: grid; place-items: center;
  width: 46px; height: 46px; margin: 0 auto; border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, #4a3a7d, #241c40);
  border: 1px solid #6b57a8;
  box-shadow: 0 0 0 5px #7c4dff12, 0 8px 24px #4a2bb340;
}
.pm-step-dot b { font-size: 13px; font-weight: 700; color: #e6dbff; }
/* A halo körbefut a hat lépésen: mindegyik a sorszáma szerint késik. */
.pm-step-halo {
  position: absolute; inset: -5px; border-radius: 50%;
  border: 1px solid var(--pm-accent); opacity: 0;
  animation: pm-halo 6s ease-out infinite;
  animation-delay: calc(var(--step, 0) * .42s);
}
@keyframes pm-halo {
  0% { opacity: .5; transform: scale(1); }
  18%, 100% { opacity: 0; transform: scale(1.5); }
}

/* A lépéseket összekötő szakasz. Két szomszédos kör középpontja között fut: a
   rács oszlopai egyenlők, ezért a középpontok távolsága az oszlopszélesség és a
   rés összege, amiből a két kör sugara kimarad. */
.pm-step:not(:last-child)::before,
.pm-step:not(:last-child)::after {
  content: ''; position: absolute;
  left: calc(50% + 30px);
  width: calc(100% + var(--pm-flow-gap) - 60px);
}
.pm-step:not(:last-child)::before { top: 23px; height: 1px; background: #463c6d; }

/* Ugyanazon a szakaszon fut végig egy fénypont, lépésenként késleltetve: a
   mozgás a háttér eltolása, nem az elemé, így a szakasz hossza nem számít. */
.pm-step:not(:last-child)::after {
  top: 21.5px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--pm-accent), transparent);
  background-size: 38% 100%; background-repeat: no-repeat; background-position: -45% 0;
  opacity: 0;
  animation: pm-travel 6s linear infinite;
  animation-delay: calc(var(--step, 0) * .42s);
}
@keyframes pm-travel {
  0%   { background-position: -45% 0; opacity: 0; }
  6%   { opacity: .95; }
  26%  { background-position: 145% 0; opacity: .95; }
  32%, 100% { background-position: 145% 0; opacity: 0; }
}

.pm-step-note {
  display: inline-block; margin-top: 12px; padding: 7px 13px;
  border: 1px solid #4a3d73; border-radius: 999px;
  background: #ffffff07; font-size: 11.5px; color: #d6cbf0;
}

/* ---- Árak --------------------------------------------------------------- */

/* A két kártya és a mellettük futó oszlop egy magasságban végződik: a rács
   nyújtja őket, a jobb oldali lista pedig egyenlő részekre osztja a helyet. */
.pm-pricing-grid { display: grid; grid-template-columns: 1.32fr .68fr; gap: clamp(20px, 2.6vw, 38px); align-items: stretch; }
.pm-plans { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(14px, 1.8vw, 24px); }

.pm-plan {
  display: grid; gap: 14px; grid-template-rows: auto 1fr auto;
  padding: clamp(20px, 2.2vw, 28px); text-align: left; color: inherit;
  cursor: pointer; width: 100%;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.pm-plan:hover { transform: translateY(-4px); border-color: #55477f; box-shadow: 0 22px 60px #2a166b40; }
.pm-plan-head { display: flex; align-items: center; gap: 13px; }
.pm-plan-head strong { font-size: clamp(15px, 1.5vw, 18px); font-weight: 650; }
.pm-plan > small { font-size: 13px; line-height: 1.55; color: var(--pm-muted); }
.pm-plan-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 6px; }
.pm-plan-foot b {
  font-size: clamp(16px, 1.75vw, 24px); font-weight: 700; letter-spacing: -.03em;
  color: var(--pm-accent); white-space: nowrap; min-width: 0;
}
.pm-plan-go {
  display: grid; place-items: center; flex: none; width: 38px; height: 38px;
  border-radius: 50%; background: linear-gradient(120deg, #a88bf5, #c3a6ff); color: #1d1533;
  transition: transform .28s ease;
}
.pm-plan-go svg { width: 17px; height: 17px; }
.pm-plan:hover .pm-plan-go { transform: translateX(4px); }

.pm-aftercare { display: flex; flex-direction: column; }
.pm-aftercare-title { font-size: 14px; font-weight: 650; margin-bottom: 14px; }
.pm-aftercare ul { flex: 1; display: grid; grid-template-rows: repeat(3, minmax(0, 1fr)); gap: 10px; }
.pm-aftercare li { display: flex; align-items: center; gap: 13px; padding: 14px 15px; }
.pm-aftercare strong { display: block; font-size: 13.5px; font-weight: 650; }
.pm-aftercare small { display: block; margin-top: 3px; font-size: 12px; line-height: 1.45; color: var(--pm-muted); }

/* ---- Kérdések ----------------------------------------------------------- */

.pm-faq-in { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(24px, 3.4vw, 56px); align-items: start; }
.pm-faq .pm-section-head { margin-bottom: 0; }
.pm-faq-list { display: grid; gap: 10px; }
.pm-faq-list details {
  border: 1px solid var(--pm-line); border-radius: 14px;
  background: linear-gradient(158deg, var(--pm-panel-2), var(--pm-panel));
  transition: border-color .25s ease;
}
.pm-faq-list details[open] { border-color: #4b3f74; }
.pm-faq-list summary {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 17px 20px; cursor: pointer; list-style: none;
  font-size: 14.5px; font-weight: 600;
}
.pm-faq-list summary::-webkit-details-marker { display: none; }
.pm-faq-list summary svg { width: 18px; height: 18px; flex: none; color: var(--pm-accent); transition: transform .3s ease; }
.pm-faq-list details[open] summary svg { transform: rotate(180deg); }
.pm-faq-list details p { padding: 0 20px 18px; font-size: 13.5px; line-height: 1.7; color: var(--pm-muted); }
.pm-faq-note { margin-top: 6px; padding: 0 4px; font-size: 13px; color: var(--pm-dim); }

/* ---- Záró --------------------------------------------------------------- */

.pm-closing { text-align: center; }
.pm-closing .pm-eyebrow { justify-content: center; }
.pm-closing h2 { font-size: clamp(26px, 3.2vw, 40px); line-height: 1.15; max-width: 16em; margin: 0 auto; }
.pm-closing .pm-hero-cta { margin-top: 30px; }
.pm-closing .pm-hero-note { margin-left: auto; margin-right: auto; }

/* ---- Lábléc ------------------------------------------------------------- */

.pm-footer { border-top: 1px solid var(--pm-line-soft); color: var(--pm-muted); }
.pm-footer .pm-wordmark { color: var(--pm-text); }
.pm-footer-in {
  max-width: var(--pm-max); margin: 0 auto; padding: 30px var(--pm-gutter) 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
}
.pm-footer .pm-wordmark small { display: block; margin-top: 3px; font-size: 11.5px; font-weight: 400; color: var(--pm-dim); }
.pm-footer nav { display: flex; gap: 22px; font-size: 12.5px; color: var(--pm-muted); }
.pm-footer nav :where(a, button) { color: inherit; font-size: inherit; background: none; border: 0; padding: 0; cursor: pointer; transition: color .2s ease; }
.pm-footer nav :where(a, button):hover { color: var(--pm-accent); }
.pm-footer-claim { font-size: 12.5px; line-height: 1.5; text-align: right; color: var(--pm-dim); }

/* ---- Keskenyebb képernyők ----------------------------------------------- */

@media (max-width: 1080px) {
  .pm-flow-track { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 34px; }
  .pm-step:nth-child(3)::before, .pm-step:nth-child(3)::after { display: none; }
  .pm-faq-in { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .pm-hero-in { grid-template-columns: 1fr; }
  .pm-hero-aside { max-width: 460px; }
  .pm-hero-stamp { display: none; }
  .pm-reference-card { grid-template-columns: 1fr; }
  .pm-pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .pm-header nav {
    display: none; position: absolute; top: 64px; left: var(--pm-gutter); right: var(--pm-gutter);
    flex-direction: column; gap: 0; padding: 10px;
    background: #1b1630; border: 1px solid #3d3360; border-radius: 14px; box-shadow: 0 22px 60px #05020f99;
  }
  .pm-header nav.is-open { display: flex; }
  .pm-header nav a { padding: 12px 14px; border-radius: 9px; font-size: 14px; }
  .pm-header nav a:hover { background: #2d2450; }
  .pm-header-cta { margin-left: auto; padding: 9px 14px; font-size: 12px; }
  .pm-menu-toggle {
    display: grid; place-items: center; width: 36px; height: 36px; flex: none;
    background: transparent; border: 1px solid #4a3f6d; border-radius: 10px; color: #d3b6f5; padding: 7px;
  }
  .pm-menu-toggle > span { display: grid; gap: 5px; }
  .pm-menu-toggle i { display: block; width: 16px; height: 1px; background: currentColor; }
  .pm-menu-toggle svg { width: 19px; height: 19px; }

  .pm-hero-aside { grid-template-columns: 1fr; }
  .pm-flow-track { grid-template-columns: 1fr; row-gap: 26px; }
  .pm-step { display: grid; grid-template-columns: 46px minmax(0, 1fr); gap: 4px 16px; text-align: left; }
  .pm-step-dot { grid-row: 1 / 3; }
  .pm-step h3 { margin-top: 10px; font-size: 15px; }
  .pm-step p { font-size: 13px; }
  .pm-step-note { grid-column: 2; }
  .pm-step:not(:last-child)::before, .pm-step:not(:last-child)::after { display: none; }
  .pm-plans { grid-template-columns: 1fr; }
  .pm-footer-in { flex-direction: column; align-items: center; text-align: center; }
  .pm-footer nav { flex-wrap: wrap; justify-content: center; }
  .pm-footer-claim { text-align: center; }
}
