/* =========================================
   Posts Machine — CSS
   ========================================= */

/* === KEYFRAMES === */
@keyframes pmFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-12px) rotate(0deg); }
}
@keyframes pmFloatAlt {
  0%, 100% { transform: translateY(0px) rotate(-6deg); }
  50%       { transform: translateY(-8px) rotate(-6deg); }
}
@keyframes pmFloatBottom {
  0%, 100% { transform: translateY(0px) rotate(5deg); }
  50%       { transform: translateY(-10px) rotate(5deg); }
}
@keyframes pmPulse {
  0%, 100% { box-shadow: 0 4px 30px rgba(255,107,0,0.25); }
  50%       { box-shadow: 0 4px 48px rgba(255,107,0,0.55), 0 0 0 6px rgba(255,107,0,0.08); }
}
@keyframes pmDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(255,107,0,0.5); }
  50%       { opacity: 0.8; transform: scale(1.1); box-shadow: 0 0 0 6px rgba(255,107,0,0); }
}
@keyframes pmGlowShift {
  0%, 100% { opacity: 0.7; transform: scale(1) translate(0, 0); }
  33%       { opacity: 1; transform: scale(1.12) translate(-20px, 10px); }
  66%       { opacity: 0.85; transform: scale(1.06) translate(10px, -15px); }
}

/* === HERO === */
.fade-up {
  opacity: 1 !important;
  transform: none !important;
}

.pm-hero {
  position: relative;
  padding: 140px 0 88px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.pm-hero__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 65% 30%, rgba(255,107,0,0.13), transparent 55%),
    radial-gradient(ellipse 40% 40% at 15% 60%, rgba(255,107,0,0.07), transparent 50%);
  pointer-events: none;
  animation: pmGlowShift 10s ease-in-out infinite;
}

.pm-hero::before {
  content: 'PM';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-52%);
  font-family: 'Poppins', sans-serif;
  font-size: 36vw;
  font-weight: 900;
  color: rgba(255,107,0,0.032);
  letter-spacing: -20px;
  pointer-events: none;
  line-height: 1;
  z-index: 0;
  user-select: none;
}

.pm-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1.05fr);
  gap: 56px;
  align-items: center;
}

.pm-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.28);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeSlideUp 0.6s ease 0.1s both;
}

.pm-hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  animation: pmDotPulse 2s ease-in-out infinite;
}

.pm-hero h1 {
  font-size: clamp(3.6rem, 7.5vw, 7rem);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 26px;
  animation: fadeSlideUp 0.7s ease 0.22s both;
}

.pm-hero__accent {
  color: var(--orange);
  display: block;
}

.pm-hero__lead {
  max-width: 560px;
  font-size: 1.12rem;
  line-height: 1.72;
  color: rgba(250,250,250,0.7);
  animation: fadeSlideUp 0.7s ease 0.36s both;
}

.pm-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 28px;
  animation: fadeSlideUp 0.7s ease 0.5s both;
}

.pm-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  animation: fadeSlideUp 0.7s ease 0.62s both;
}

.pm-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: rgba(250,250,250,0.78);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 600;
}

.pm-proof span svg {
  color: var(--orange);
  flex-shrink: 0;
}

/* CTA pulse animation */
.pm-cta-pulse {
  animation: pmPulse 2.8s ease-in-out infinite;
}
.pm-cta-pulse:hover {
  animation: none;
}

/* === GALLERY === */
.pm-preview {
  min-width: 0;
  animation: fadeSlideUp 0.9s ease 0.3s both;
}

.pm-gallery {
  position: relative;
  min-height: 600px;
}

.pm-cover {
  position: absolute;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.16);
  background: #101010;
  box-shadow: 0 32px 100px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,107,0,0.06);
  transition: box-shadow 0.4s ease;
}

.pm-cover:hover {
  box-shadow: 0 32px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,107,0,0.2);
}

.pm-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.pm-cover__img--swap {
  opacity: 0;
  transform: scale(0.985);
}

.pm-cover figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(13,13,13,0.76);
  color: rgba(250,250,250,0.9);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(6px);
}

.pm-cover--main {
  width: min(420px, 70%);
  aspect-ratio: 4 / 5;
  right: 12%;
  top: 18px;
  z-index: 2;
  animation: pmFloat 7s ease-in-out infinite;
}

.pm-cover--top {
  width: min(260px, 42%);
  aspect-ratio: 4 / 5;
  left: 0;
  top: 0;
  z-index: 1;
  animation: pmFloatAlt 8.5s ease-in-out 1s infinite;
}

.pm-cover--bottom {
  width: min(285px, 46%);
  aspect-ratio: 4 / 5;
  right: 0;
  bottom: 18px;
  z-index: 3;
  animation: pmFloatBottom 6s ease-in-out 0.5s infinite;
}

.pm-gallery__note {
  position: absolute;
  left: 6%;
  bottom: 18px;
  z-index: 4;
  display: grid;
  gap: 6px;
  max-width: 280px;
  padding: 16px 18px;
  border-radius: 10px;
  background: rgba(13,13,13,0.9);
  border: 1px solid rgba(255,107,0,0.28);
  box-shadow: 0 18px 50px rgba(0,0,0,0.32);
  backdrop-filter: blur(8px);
}

.pm-gallery__note span {
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.pm-gallery__note strong {
  color: #FAFAFA;
  font-size: 0.88rem;
  line-height: 1.3;
}

/* === STATS STRIP === */
.pm-stats {
  padding: 0;
  border-bottom: 1px solid var(--border);
  background: rgba(255,107,0,0.04);
}

.pm-stats__grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.pm-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 28px 24px;
  text-align: center;
}

.pm-stat strong {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.02em;
}

.pm-stat span {
  font-size: 0.78rem;
  color: rgba(250,250,250,0.55);
  font-weight: 500;
}

.pm-stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  flex-shrink: 0;
}

/* === SHARED CARD STYLES === */
.pm-card,
.pm-feature,
.pm-metric,
.pm-flow__line article,
.pm-course__grid article,
.pm-cost__panel {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.pm-metric:hover,
.pm-flow__line article:hover,
.pm-course__grid article:hover,
.pm-feature:hover {
  border-color: rgba(255,107,0,0.28);
  box-shadow: 0 16px 48px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,107,0,0.1);
  transform: translateY(-3px);
}

/* === SECTION BASE === */
.pm-section {
  padding: 96px 0;
  border-bottom: 1px solid var(--border);
}

.pm-section__head {
  max-width: 760px;
  margin-bottom: 40px;
}

.pm-section__head h2,
.pm-solution h2,
.pm-cost h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

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

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

/* === METRICS === */
.pm-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pm-metric {
  padding: 28px;
  min-height: 286px;
  display: grid;
  align-content: start;
}

.pm-metric span {
  display: inline-flex;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.pm-metric strong {
  display: block;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.pm-meter {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 16px;
}

.pm-meter i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), #FFB060);
}

.pm-metric small {
  color: rgba(250,250,250,0.55);
  font-size: 0.82rem;
  line-height: 1.5;
}

.pm-metric__cost {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,107,0,0.22);
}

.pm-metric__cost b {
  display: block;
  color: var(--orange);
  font-size: 1.28rem;
  line-height: 1.1;
  margin-bottom: 5px;
}

.pm-metric__cost em {
  color: rgba(250,250,250,0.55);
  font-size: 0.82rem;
  font-style: normal;
}

.pm-problem__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 18px;
  padding: 18px 22px;
  border: 1px solid rgba(255,107,0,0.28);
  border-radius: 8px;
  background: rgba(255,107,0,0.1);
}

.pm-problem__total span {
  color: rgba(250,250,250,0.72);
  font-weight: 800;
}

.pm-problem__total strong {
  color: #FAFAFA;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1;
  white-space: nowrap;
}

/* === SOLUTION === */
.pm-solution__grid,
.pm-cost__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: 52px;
  align-items: start;
}

.pm-steps {
  display: grid;
  gap: 12px;
}

.pm-steps div {
  display: grid;
  gap: 8px;
  padding: 22px 24px;
  border-left: 3px solid var(--orange);
  background: rgba(255,255,255,0.04);
  border-radius: 0 10px 10px 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.pm-steps div:hover {
  background: rgba(255,107,0,0.06);
  transform: translateX(4px);
}

.pm-steps strong {
  color: var(--white);
  font-size: 1.05rem;
}

.pm-steps span {
  color: rgba(250,250,250,0.6);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* === FLOW === */
.pm-flow {
  background:
    linear-gradient(180deg, rgba(255,107,0,0.07), transparent 60%),
    #111111;
}

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

.pm-flow__line::before {
  content: '';
  position: absolute;
  left: 12%;
  right: 12%;
  top: 38px;
  height: 1px;
  background: linear-gradient(90deg, var(--orange), rgba(255,107,0,0.08));
}

.pm-flow__line article {
  position: relative;
  z-index: 1;
  min-height: 220px;
  padding: 28px;
}

.pm-flow__line span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: #111111;
  font-weight: 900;
  font-size: 0.9rem;
  box-shadow: 0 8px 24px rgba(255,107,0,0.3);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.pm-flow__line article:hover span {
  box-shadow: 0 12px 36px rgba(255,107,0,0.5);
  transform: scale(1.08);
}

.pm-flow__line h3 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.pm-flow p,
.pm-course p,
.pm-solution p,
.pm-cost p,
.pm-slides p,
.pm-video p,
.pm-card p,
.pm-feature p {
  color: rgba(250,250,250,0.62);
}

.pm-flow__note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  padding: 16px 20px;
  border: 1px solid rgba(255,107,0,0.3);
  border-radius: 10px;
  background: rgba(255,107,0,0.08);
}

.pm-flow__note strong {
  color: var(--orange);
}

.pm-flow__note span {
  color: rgba(250,250,250,0.7);
}

/* === COURSE === */
.pm-course__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pm-course__grid article {
  min-height: 250px;
  padding: 30px;
}

.pm-course__grid span {
  display: inline-flex;
  color: var(--orange);
  font-weight: 900;
  font-size: 0.9rem;
  margin-bottom: 42px;
}

.pm-course__grid h3 {
  color: var(--white);
  margin-bottom: 14px;
  font-size: 1.05rem;
}

/* === COST === */
.pm-cost {
  background:
    linear-gradient(180deg, rgba(255,107,0,0.05), transparent 60%),
    #111111;
}

.pm-cost__panel {
  padding: 28px;
  display: grid;
  gap: 0;
  box-shadow: 0 28px 80px rgba(0,0,0,0.24);
}

.pm-cost__row,
.pm-cost__total {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.pm-cost__row span,
.pm-cost__panel p {
  color: rgba(250,250,250,0.6);
}

.pm-cost__row strong {
  color: #FAFAFA;
  white-space: nowrap;
}

.pm-cost__total {
  margin: 10px 0 18px;
  padding: 18px;
  border: 1px solid rgba(255,107,0,0.32);
  border-radius: 8px;
  background: rgba(255,107,0,0.1);
}

.pm-cost__total span {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pm-cost__total strong {
  color: #FAFAFA;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
  text-align: right;
  letter-spacing: -0.02em;
}

.pm-cost__panel p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
}

/* === FEATURES === */
.pm-feature {
  padding: 28px;
  min-height: 140px;
  display: grid;
  align-content: space-between;
  gap: 18px;
}

.pm-feature h3 {
  color: var(--white);
  font-size: 1rem;
}

.pm-feature__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.pm-feature__chips span {
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(255,107,0,0.1);
  color: rgba(250,250,250,0.78);
  font-size: 0.76rem;
  font-weight: 700;
  border: 1px solid rgba(255,107,0,0.18);
  transition: background 0.2s ease;
}

.pm-feature:hover .pm-feature__chips span {
  background: rgba(255,107,0,0.15);
}

/* === SLIDES — SEQUÊNCIA === */
.pm-slides {
  padding: 96px 0 80px;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255,107,0,0.06), transparent 50%),
    #111111;
  overflow: hidden;
}

.pm-slides__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px 64px;
  align-items: end;
  margin-bottom: 56px;
}

.pm-slides__title h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--white);
}

.pm-slides__desc {
  color: rgba(250,250,250,0.62);
  font-size: 1.05rem;
  line-height: 1.72;
  margin: 0;
  padding-top: 6px;
}

/* Full-bleed sequence strip */
.pm-sequence-outer {
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 24px 0 16px;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.pm-sequence-outer::-webkit-scrollbar { display: none; }

.pm-sequence {
  display: flex;
  gap: 14px;
  padding-left: max(24px, calc((100vw - 1200px) / 2));
  padding-right: max(24px, calc((100vw - 1200px) / 2));
  width: max-content;
  min-width: 100%;
  align-items: stretch;
}

/* Card — imagem com overlay interno */
.pm-seq-card {
  flex: 0 0 auto;
  width: clamp(170px, 19vw, 250px);
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #101010;
  margin: 0;
  box-shadow:
    0 8px 24px rgba(0,0,0,0.35),
    0 24px 60px rgba(0,0,0,0.22);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: default;
}

.pm-seq-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow:
    0 16px 40px rgba(0,0,0,0.45),
    0 32px 80px rgba(0,0,0,0.28),
    0 0 0 1.5px rgba(255,107,0,0.35);
}

.pm-seq-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.pm-seq-card:hover img {
  transform: scale(1.05);
}

/* Overlay — gradiente + número + label */
.pm-seq-card figcaption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  padding: 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.3) 40%, transparent 70%);
  transition: background 0.35s ease;
}

.pm-seq-card:hover figcaption {
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.35) 45%, transparent 72%);
}

.pm-seq-n {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange);
  color: #111;
  font-size: 0.68rem;
  font-weight: 900;
  display: grid;
  place-items: center;
  letter-spacing: 0;
  box-shadow: 0 2px 10px rgba(255,107,0,0.5);
  align-self: flex-end;
}

.pm-seq-card figcaption > div {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.pm-seq-card figcaption strong {
  color: #FAFAFA;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pm-seq-card figcaption span {
  color: rgba(250,250,250,0.58);
  font-size: 0.7rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* CTA card — borda laranja sutil para destacar o último */
.pm-seq-card--cta {
  box-shadow:
    0 8px 24px rgba(0,0,0,0.35),
    0 24px 60px rgba(0,0,0,0.22),
    0 0 0 1px rgba(255,107,0,0.28);
}

/* Footer CTA strip */
.pm-slides__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
}

.pm-slides__badge {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pm-slides__badge-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange);
  color: #111;
  font-size: 1.1rem;
  font-weight: 900;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 16px rgba(255,107,0,0.3);
  flex-shrink: 0;
}

.pm-slides__badge strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
}

.pm-slides__badge span {
  display: block;
  color: rgba(250,250,250,0.48);
  font-size: 0.8rem;
  margin-top: 2px;
}

/* === EXAMPLES === */
/* === EXAMPLES === */
.pm-examples__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 64px;
  align-items: end;
  margin-bottom: 40px;
}

.pm-examples__head h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.pm-examples__sub {
  color: rgba(250,250,250,0.52);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
  padding-bottom: 4px;
}

.pm-examples__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}

/* Stagger alternate columns down for visual rhythm */
.pm-examples figure:nth-child(4n+2),
.pm-examples figure:nth-child(4n+4) {
  margin-top: 28px;
}

.pm-examples figure {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 12px;
  background: #0E0E0E;
  box-shadow:
    0 4px 10px rgba(0,0,0,0.2),
    0 12px 32px rgba(0,0,0,0.14);
  transition: transform 0.4s cubic-bezier(0.22, 0.72, 0.2, 1),
              box-shadow 0.4s ease;
  cursor: pointer;
}

.pm-examples figure:hover {
  transform: translateY(-6px);
  box-shadow:
    0 8px 20px rgba(0,0,0,0.28),
    0 24px 56px rgba(0,0,0,0.2),
    0 0 0 1px rgba(255,107,0,0.15);
}

/* Carousel track */
.pm-example-track {
  width: 100%;
  height: 100%;
  display: flex;
  transform: translateX(0);
  transition: transform 1.1s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}

.pm-examples img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* === VIDEO === */
.pm-video__grid {
  display: grid;
  gap: 36px;
  align-items: start;
}

.pm-video {
  background:
    linear-gradient(180deg, rgba(255,107,0,0.07), transparent 56%),
    #0D0D0D;
}

.pm-video__copy {
  max-width: 860px;
}

.pm-video h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: -0.02em;
  color: #FAFAFA;
}

.pm-video__frame {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-height: 560px;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 34px;
  border-radius: 12px;
  border: 1px solid rgba(255,107,0,0.25);
  background:
    linear-gradient(135deg, rgba(255,107,0,0.15), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)),
    #0D0D0D;
  box-shadow: 0 32px 90px rgba(0,0,0,0.26);
  text-align: center;
}

.pm-video__play {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #111111;
  box-shadow: 0 18px 48px rgba(255,107,0,0.36);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.pm-video__frame:hover .pm-video__play {
  transform: scale(1.08);
  box-shadow: 0 24px 64px rgba(255,107,0,0.5);
}

.pm-video__frame strong {
  color: #FAFAFA;
  font-size: 1.3rem;
}

.pm-video__frame span {
  max-width: 360px;
  color: rgba(250,250,250,0.6);
  line-height: 1.6;
}

/* === COMPARISON === */
/* === COMPARISON — ANTES VS. DEPOIS === */
.pm-cmp__head {
  max-width: 680px;
  margin-bottom: 48px;
}

.pm-cmp__head h2 {
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

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

/* --- Shared column --- */
.pm-cmp__col {
  border-radius: 14px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.pm-cmp__col--before {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
}

.pm-cmp__col--after {
  background: rgba(255,107,0,0.05);
  border: 1px solid rgba(255,107,0,0.24);
  box-shadow: 0 20px 60px rgba(255,107,0,0.07);
}

.pm-cmp__col-top { display: flex; flex-direction: column; gap: 6px; }

.pm-cmp__col-tag {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,250,250,0.35);
  margin: 0;
}

.pm-cmp__col-tag--after { color: var(--orange); }

.pm-cmp__col h3 {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0;
}

.pm-cmp__col-sub {
  color: rgba(250,250,250,0.45);
  font-size: 0.85rem;
  margin: 0;
}

/* --- ANTES: repeating weeks --- */
.pm-cmp__weeks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pm-cmp__week {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: start;
}

.pm-cmp__week-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(250,250,250,0.3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-top: 5px;
}

.pm-cmp__week--dim1 .pm-cmp__week-label,
.pm-cmp__week--dim1 .pm-cmp__task { opacity: 0.55; }

.pm-cmp__week--dim2 .pm-cmp__week-label,
.pm-cmp__week--dim2 .pm-cmp__task { opacity: 0.25; }

.pm-cmp__week-tasks {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.pm-cmp__task {
  background: rgba(255,80,80,0.08);
  border: 1px solid rgba(255,80,80,0.14);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 0.78rem;
  color: rgba(250,250,250,0.6);
  font-weight: 500;
}

.pm-cmp__loop {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0 0 52px;
  color: rgba(250,250,250,0.28);
  font-size: 0.76rem;
  font-weight: 600;
}

/* --- Total bars --- */
.pm-cmp__total {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: auto;
}

.pm-cmp__total strong {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}

.pm-cmp__total span {
  font-size: 0.82rem;
  line-height: 1.45;
}

.pm-cmp__total--before strong { color: rgba(255,100,100,0.7); }
.pm-cmp__total--before span { color: rgba(250,250,250,0.38); }

.pm-cmp__total--after strong { color: var(--orange); }
.pm-cmp__total--after span { color: rgba(250,250,250,0.5); }

/* --- DEPOIS: timeline --- */
.pm-cmp__timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pm-cmp__tl-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pm-cmp__tl-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 900;
  color: rgba(250,250,250,0.55);
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.pm-cmp__tl-badge--inf {
  background: var(--orange);
  border-color: var(--orange);
  color: #111;
  font-size: 1.1rem;
  box-shadow: 0 4px 20px rgba(255,107,0,0.35);
}

.pm-cmp__tl-body {
  padding-bottom: 4px;
}

.pm-cmp__tl-body strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.pm-cmp__tl-body p {
  color: rgba(250,250,250,0.52);
  font-size: 0.84rem;
  line-height: 1.55;
  margin: 0;
}

.pm-cmp__tl-connector {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0 8px 19px;
}

.pm-cmp__tl-line {
  width: 2px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,107,0,0.2), rgba(255,107,0,0.55));
  border-radius: 2px;
  flex-shrink: 0;
}

.pm-cmp__tl-connector span {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
}

.pm-cmp__auto-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 8px;
}

.pm-cmp__auto-list li {
  font-size: 0.84rem;
  color: rgba(250,250,250,0.7);
  padding-left: 14px;
  position: relative;
  line-height: 1.45;
}

.pm-cmp__auto-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.7;
}

/* === FOR WHO === */
.pm-for-who {
  background:
    linear-gradient(180deg, rgba(255,107,0,0.05), transparent 50%),
    #111111;
}

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

.pm-for-who__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.pm-for-who__item:hover {
  border-color: rgba(255,107,0,0.24);
  background: rgba(255,107,0,0.05);
  transform: translateY(-2px);
}

.pm-for-who__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 7px;
  box-shadow: 0 0 10px rgba(255,107,0,0.4);
}

.pm-for-who__item p {
  color: rgba(250,250,250,0.72);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* === NICHES === */
@keyframes nichesScrollFwd {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes nichesScrollRev {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.pm-niches {
  padding: 88px 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,107,0,0.04), transparent 50%),
    #111111;
}

.pm-niches__head {
  max-width: 640px;
  margin-bottom: 52px;
}

.pm-niches__head h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.pm-niches__head p {
  color: rgba(250,250,250,0.55);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

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

.pm-niches__track {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.pm-niches__inner {
  display: flex;
  width: max-content;
  gap: 8px;
  padding: 4px 0;
}

.pm-niches__track--fwd .pm-niches__inner {
  animation: nichesScrollFwd 36s linear infinite;
}

.pm-niches__track--rev .pm-niches__inner {
  animation: nichesScrollRev 32s linear infinite;
}

.pm-niches__track:hover .pm-niches__inner {
  animation-play-state: paused;
}

.pm-niches__inner span {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: rgba(250,250,250,0.62);
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
  cursor: default;
}

.pm-niches__inner span:hover {
  border-color: rgba(255,107,0,0.35);
  color: rgba(250,250,250,0.92);
  background: rgba(255,107,0,0.07);
}

.pm-niches__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: 56px;
  align-items: center;
}

.pm-niches__copy {
  max-width: 620px;
}

.pm-niches__copy h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 18px;
}

.pm-niches__copy p:not(.section-label) {
  color: rgba(250,250,250,0.6);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.pm-niches__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.pm-niches__proof span,
.pm-niches__board span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  white-space: nowrap;
}

.pm-niches__proof span {
  padding: 8px 12px;
  border: 1px solid rgba(255,107,0,0.22);
  background: rgba(255,107,0,0.1);
  color: rgba(250,250,250,0.8);
  font-size: 0.78rem;
  font-weight: 800;
}

.pm-niches__board {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  background:
    radial-gradient(circle at 15% 15%, rgba(255,107,0,0.14), transparent 32%),
    rgba(255,255,255,0.035);
  box-shadow: 0 22px 70px rgba(0,0,0,0.16);
}

.pm-niches__board span {
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,0.11);
  background: rgba(255,255,255,0.055);
  color: rgba(250,250,250,0.72);
  font-size: 0.86rem;
  font-weight: 700;
}

.pm-niches__board span:nth-child(3n+1) {
  border-color: rgba(255,107,0,0.25);
  color: rgba(250,250,250,0.9);
}

@media (max-width: 980px) {
  .pm-niches__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 620px) {
  .pm-niches__board {
    padding: 18px;
    gap: 8px;
  }

  .pm-niches__board span {
    padding: 8px 11px;
    font-size: 0.78rem;
  }
}

[data-theme="light"] .pm-niches {
  background:
    linear-gradient(180deg, rgba(255,107,0,0.04), transparent 50%),
    #F5F0E8;
}

[data-theme="light"] .pm-niches__head p { color: rgba(26,26,26,0.55); }
[data-theme="light"] .pm-niches__copy p:not(.section-label) { color: rgba(26,26,26,0.6); }
[data-theme="light"] .pm-niches__inner span {
  border-color: rgba(0,0,0,0.1);
  background: rgba(255,255,255,0.7);
  color: rgba(26,26,26,0.62);
}
[data-theme="light"] .pm-niches__inner span:hover {
  border-color: rgba(255,107,0,0.3);
  color: rgba(26,26,26,0.88);
  background: rgba(255,107,0,0.07);
}

[data-theme="light"] .pm-niches__board {
  border-color: rgba(0,0,0,0.08);
  background:
    radial-gradient(circle at 15% 15%, rgba(255,107,0,0.12), transparent 32%),
    rgba(255,255,255,0.7);
  box-shadow: 0 18px 50px rgba(0,0,0,0.05);
}

[data-theme="light"] .pm-niches__board span {
  border-color: rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.8);
  color: rgba(26,26,26,0.68);
}

[data-theme="light"] .pm-niches__board span:nth-child(3n+1) {
  border-color: rgba(255,107,0,0.25);
  color: rgba(26,26,26,0.88);
}

[data-theme="light"] .pm-niches__proof span {
  color: rgba(26,26,26,0.78);
}

/* === OFFER === */
.pm-offer {
  position: relative;
  padding: 100px 0 96px;
  background: #0A0A0A;
  overflow: hidden;
}

.pm-offer__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,107,0,0.1), transparent 55%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(255,107,0,0.05), transparent 50%);
  pointer-events: none;
}

.pm-offer__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  gap: 56px;
  align-items: start;
}

/* Left */
.pm-offer__left h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #FAFAFA;
  margin-bottom: 16px;
}

.pm-offer__left .section-label { color: var(--orange); }

.pm-offer__lead {
  color: rgba(250,250,250,0.6);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.pm-offer__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pm-offer__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.pm-offer__list li:last-child { border-bottom: none; }

.pm-offer__check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,107,0,0.15);
  border: 1px solid rgba(255,107,0,0.3);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--orange);
}

.pm-offer__list li > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pm-offer__list li strong {
  color: #FAFAFA;
  font-size: 0.95rem;
  font-weight: 700;
}

.pm-offer__list li span {
  color: rgba(250,250,250,0.48);
  font-size: 0.82rem;
  line-height: 1.4;
}

/* Right card */
.pm-offer__card {
  border: 1px solid rgba(255,107,0,0.3);
  border-radius: 16px;
  background: rgba(255,107,0,0.05);
  backdrop-filter: blur(8px);
  box-shadow:
    0 0 0 1px rgba(255,107,0,0.08),
    0 24px 80px rgba(255,107,0,0.1),
    0 8px 24px rgba(0,0,0,0.3);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 96px;
}

.pm-offer__card-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pm-offer__card-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255,107,0,0.12);
  border: 1px solid rgba(255,107,0,0.25);
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pm-offer__card-head strong {
  color: #FAFAFA;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
}

.pm-offer__card-head p {
  color: rgba(250,250,250,0.55);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

.pm-offer__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.pm-offer__pills span {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(250,250,250,0.65);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 5px 12px;
}

.pm-offer__price {
  border: 1px solid rgba(255, 107, 0, 0.22);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 107, 0, 0.14), rgba(255, 255, 255, 0.04));
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pm-offer__price span {
  color: rgba(250,250,250,0.52);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pm-offer__price strong {
  color: #FAFAFA;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 0.95;
}

.pm-offer__price em {
  color: var(--orange);
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.2;
}

.pm-offer__price small {
  color: rgba(250,250,250,0.54);
  font-size: 0.82rem;
  line-height: 1.45;
}

.pm-offer__disclaimer {
  font-size: 0.75rem;
  color: rgba(250,250,250,0.3);
  text-align: center;
  margin: 0;
  line-height: 1.5;
}

/* === CARD & MISC === */
.pm-card {
  padding: 26px;
  min-height: 240px;
}

.pm-card span {
  display: inline-flex;
  color: var(--orange);
  font-weight: 900;
  margin-bottom: 36px;
}

.pm-card h3 {
  color: var(--white);
  margin-bottom: 14px;
}

/* === RESPONSIVE === */
@media (max-width: 980px) {
  .pm-hero__grid,
  .pm-solution__grid,
  .pm-cost__grid,
  .pm-offer__layout,
  .pm-video__grid,
  .pm-grid--3,
  .pm-metrics,
  .pm-course__grid,
  .pm-grid--2,
  .pm-cmp__grid,
  .pm-for-who__grid {
    grid-template-columns: 1fr;
  }

  .pm-hero__grid {
    gap: 40px;
  }

  .pm-hero {
    padding: 120px 0 72px;
  }

  .pm-video__copy {
    max-width: 100%;
  }

  .pm-video__frame {
    aspect-ratio: auto;
    min-height: 420px;
  }

  .pm-gallery {
    min-height: 520px;
  }

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

  .pm-flow__line::before {
    display: none;
  }

  .pm-examples__head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  /* reset stagger on tablet */
  .pm-examples figure:nth-child(4n+2),
  .pm-examples figure:nth-child(4n+4) {
    margin-top: 0;
  }

  .pm-examples figure:nth-child(2n) {
    margin-top: 20px;
  }

  .pm-slides__header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pm-seq-card {
    width: clamp(150px, 38vw, 210px);
  }

  .pm-stats__grid {
    flex-wrap: wrap;
  }

  .pm-stat {
    flex: 1 1 45%;
  }

  .pm-stat-divider {
    display: none;
  }
}

@media (max-width: 620px) {
  .pm-hero {
    padding: 96px 0 64px;
  }

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

  .pm-offer__card {
    position: static;
  }

  .pm-gallery {
    min-height: 580px;
  }

  .pm-cover--top,
  .pm-cover--bottom {
    display: none;
  }

  .pm-cover--main {
    animation: none;
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
    margin-bottom: 14px;
    aspect-ratio: 4 / 5;
  }

  .pm-cover {
    position: relative;
    inset: auto;
    transform: none !important;
    animation: none !important;
    margin-bottom: 14px;
    width: 100%;
  }

  .pm-gallery {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .pm-gallery__note {
    position: relative;
    left: auto;
    bottom: auto;
    max-width: none;
  }

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

  .pm-examples figure:nth-child(4n+2),
  .pm-examples figure:nth-child(4n+4),
  .pm-examples figure:nth-child(2n) {
    margin-top: 0;
  }

  .pm-examples figure:nth-child(even) {
    margin-top: 16px;
  }

  .pm-slides__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

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

  .pm-seq-card {
    width: clamp(140px, 52vw, 190px);
  }

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

  .pm-flow__line::before {
    display: none;
  }

  .pm-flow__line article {
    min-height: auto;
  }

  .pm-video__frame {
    aspect-ratio: auto;
    min-height: 280px;
    padding: 28px 20px;
  }

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

  .pm-card,
  .pm-feature,
  .pm-course__grid article,
  .pm-cost__panel,
  .pm-cmp__col {
    padding: 22px;
  }

  .pm-cost__row,
  .pm-cost__total {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .pm-cost__total strong {
    text-align: left;
  }

  .pm-problem__total {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .pm-stat {
    flex: 1 1 45%;
  }

  .pm-hero__badge {
    font-size: 0.68rem;
  }
}

/* === LIGHT THEME === */
[data-theme="light"] .pm-hero {
  background: #F5F0E8;
  border-bottom-color: rgba(0,0,0,0.08);
}

[data-theme="light"] .pm-hero::before {
  color: rgba(255,107,0,0.025);
}

[data-theme="light"] .pm-hero__lead,
[data-theme="light"] .pm-solution p,
[data-theme="light"] .pm-flow p,
[data-theme="light"] .pm-course p,
[data-theme="light"] .pm-cost p,
[data-theme="light"] .pm-card p,
[data-theme="light"] .pm-feature p,
[data-theme="light"] .pm-slides p,
[data-theme="light"] .pm-video p {
  color: rgba(26,26,26,0.64);
}

[data-theme="light"] .pm-proof span {
  background: rgba(255,255,255,0.72);
  border-color: rgba(0,0,0,0.1);
  color: rgba(26,26,26,0.64);
}

[data-theme="light"] .pm-proof span svg {
  color: var(--orange);
}

[data-theme="light"] .pm-stats {
  background: rgba(255,107,0,0.04);
}

[data-theme="light"] .pm-stat span {
  color: rgba(26,26,26,0.5);
}

[data-theme="light"] .pm-stat-divider {
  background: rgba(0,0,0,0.08);
}

[data-theme="light"] .pm-section {
  border-bottom-color: rgba(0,0,0,0.08);
}

[data-theme="light"] .pm-slides {
  background:
    linear-gradient(180deg, rgba(255,107,0,0.07), transparent 50%),
    #F5F0E8;
}

[data-theme="light"] .pm-slides__title h2 { color: #1A1A1A; }
[data-theme="light"] .pm-slides__desc { color: rgba(26,26,26,0.62); }
[data-theme="light"] .pm-slides__footer { border-top-color: rgba(0,0,0,0.08); }
[data-theme="light"] .pm-slides__badge strong { color: #1A1A1A; }
[data-theme="light"] .pm-slides__badge span { color: rgba(26,26,26,0.5); }

[data-theme="light"] .pm-flow {
  background:
    linear-gradient(180deg, rgba(255,107,0,0.07), transparent 60%),
    #F5F0E8;
}

[data-theme="light"] .pm-cost {
  background:
    linear-gradient(180deg, rgba(255,107,0,0.06), transparent 60%),
    #F5F0E8;
}

[data-theme="light"] .pm-for-who {
  background:
    linear-gradient(180deg, rgba(255,107,0,0.05), transparent 50%),
    #F5F0E8;
}

[data-theme="light"] .pm-video {
  background:
    linear-gradient(180deg, rgba(255,107,0,0.1), transparent 56%),
    #0D0D0D;
}

[data-theme="light"] .pm-video h2,
[data-theme="light"] .pm-video .section-label {
  color: #FAFAFA;
}

[data-theme="light"] .pm-video p {
  color: rgba(250,250,250,0.7);
}

[data-theme="light"] .pm-card,
[data-theme="light"] .pm-feature,
[data-theme="light"] .pm-metric,
[data-theme="light"] .pm-flow__line article,
[data-theme="light"] .pm-course__grid article,
[data-theme="light"] .pm-cost__panel,
[data-theme="light"] .pm-cmp__col--before,
[data-theme="light"] .pm-for-who__item {
  background: rgba(255,255,255,0.78);
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}

[data-theme="light"] .pm-cmp__col--after {
  background: rgba(255,107,0,0.06);
  border-color: rgba(255,107,0,0.22);
}

[data-theme="light"] .pm-cmp__col h3 { color: #1A1A1A; }
[data-theme="light"] .pm-cmp__col-sub { color: rgba(26,26,26,0.5); }
[data-theme="light"] .pm-cmp__task { color: rgba(26,26,26,0.6); background: rgba(200,0,0,0.05); border-color: rgba(200,0,0,0.1); }
[data-theme="light"] .pm-cmp__loop { color: rgba(26,26,26,0.3); }
[data-theme="light"] .pm-cmp__total { border-top-color: rgba(0,0,0,0.08); }
[data-theme="light"] .pm-cmp__tl-body p { color: rgba(26,26,26,0.55); }
[data-theme="light"] .pm-cmp__auto-list li { color: rgba(26,26,26,0.68); }

[data-theme="light"] .pm-card h3,
[data-theme="light"] .pm-feature h3,
[data-theme="light"] .pm-metric strong,
[data-theme="light"] .pm-flow__line h3,
[data-theme="light"] .pm-course__grid h3 {
  color: #1A1A1A;
}

[data-theme="light"] .pm-meter {
  background: rgba(0,0,0,0.08);
}

[data-theme="light"] .pm-metric small {
  color: rgba(26,26,26,0.56);
}

[data-theme="light"] .pm-metric__cost em {
  color: rgba(26,26,26,0.56);
}

[data-theme="light"] .pm-problem__total span {
  color: rgba(26,26,26,0.72);
}

[data-theme="light"] .pm-problem__total strong {
  color: #1A1A1A;
}

[data-theme="light"] .pm-feature__chips span {
  background: rgba(255,107,0,0.1);
  color: rgba(26,26,26,0.72);
  border-color: rgba(255,107,0,0.2);
}

[data-theme="light"] .pm-flow__note span {
  color: rgba(26,26,26,0.7);
}

[data-theme="light"] .pm-cost__row {
  border-bottom-color: rgba(0,0,0,0.07);
}

[data-theme="light"] .pm-cost__row span,
[data-theme="light"] .pm-cost__panel p {
  color: rgba(26,26,26,0.62);
}

[data-theme="light"] .pm-cost__row strong {
  color: #1A1A1A;
}

[data-theme="light"] .pm-cost__total strong {
  color: #1A1A1A;
}

[data-theme="light"] .pm-steps div {
  background: rgba(255,255,255,0.76);
}

[data-theme="light"] .pm-steps div:hover {
  background: rgba(255,107,0,0.06);
}

[data-theme="light"] .pm-steps strong {
  color: #1A1A1A;
}

[data-theme="light"] .pm-steps span {
  color: rgba(26,26,26,0.6);
}

[data-theme="light"] .pm-compare__after {
  background: rgba(255,107,0,0.08);
  border-color: rgba(255,107,0,0.26);
}

[data-theme="light"] .pm-compare li {
  color: rgba(26,26,26,0.62);
  border-bottom-color: rgba(0,0,0,0.07);
}

[data-theme="light"] .pm-compare__after li {
  color: rgba(26,26,26,0.8);
}

[data-theme="light"] .pm-for-who__item:hover {
  background: rgba(255,107,0,0.06);
  border-color: rgba(255,107,0,0.22);
}

[data-theme="light"] .pm-for-who__item p {
  color: rgba(26,26,26,0.68);
}

[data-theme="light"] .pm-offer { background: #0A0A0A; }
[data-theme="light"] .pm-offer__left h2 { color: #FAFAFA; }
[data-theme="light"] .pm-offer__lead { color: rgba(250,250,250,0.6); }
[data-theme="light"] .pm-offer__list li { border-bottom-color: rgba(255,255,255,0.08); }
[data-theme="light"] .pm-offer__list li strong { color: #FAFAFA; }
[data-theme="light"] .pm-offer__list li span { color: rgba(250,250,250,0.48); }
[data-theme="light"] .pm-offer__card { background: rgba(255,107,0,0.07); }
[data-theme="light"] .pm-offer__card-head strong { color: #FAFAFA; }
[data-theme="light"] .pm-offer__card-head p { color: rgba(250,250,250,0.55); }
[data-theme="light"] .pm-offer__pills span { color: rgba(250,250,250,0.65); }
[data-theme="light"] .pm-offer__disclaimer { color: rgba(250,250,250,0.3); }

[data-theme="light"] .pm-hero__badge {
  background: rgba(255,107,0,0.1);
  border-color: rgba(255,107,0,0.25);
}
