/* MOKE PPF product page */

@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap");

:root {
  --blue: #0938d3;
  --blue-dark: #062a9e;
  --dark: #0a0e1f;
  --dark-2: #12162b;
  --gray: #5c6378;
  --gray-light: #eef1f8;
  --white: #ffffff;
  --accent: #ffd400;
  --radius: 16px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--dark);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  font-synthesis: none;
  /* ???? 100vw ???????????? */
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.container.ppf-wide {
  width: min(1520px, calc(100% - 48px));
}

.moke-ppf-page .container.container-1630 {
  width: 100%;
  max-width: 1630px;
  margin-left: auto;
  margin-right: auto;
}

/* Header uses site styles ? only page-specific overrides below */
.moke-ppf-page .main-header.header-transparent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.ppf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.ppf-btn:hover { transform: translateY(-2px); }

.ppf-btn-accent { background: var(--accent); color: var(--dark); }
.ppf-btn-primary { background: var(--blue); color: #fff; }
.ppf-btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.ppf-btn-sm { padding: 10px 20px; font-size: 14px; }

/* Hero video ? full viewport like homepage (header is absolute overlay) */
.ppf-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}

.ppf-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ppf-youtube {
  position: absolute;
  inset: 0;
  background: #0a0e1f;
  overflow: hidden;
}

.ppf-youtube iframe,
.ppf-youtube video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100%;
  min-width: 177.78%;
  transform: translate(-50%, -50%);
  border: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.ppf-youtube.video-ready iframe,
.ppf-youtube.video-ready video { opacity: 1; }

.ppf-hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: opacity 0.5s;
}

.ppf-youtube.video-ready .ppf-hero-poster { opacity: 0; pointer-events: none; }

.ppf-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(10, 14, 31, 0.35) 0%,
    rgba(10, 14, 31, 0.55) 45%,
    rgba(10, 14, 31, 0.92) 100%
  );
  pointer-events: none;
}

.ppf-hero-copy {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 0 64px;
}

.ppf-hero-eyebrow {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.ppf-hero-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(2.05rem, 4.4vw, 3.35rem);
  line-height: 1.12;
  font-weight: 700;
  color: #fff;
  max-width: 780px;
  text-wrap: balance;
}

.ppf-hero-copy h1,
.ppf-hero-copy [data-ppf="ppf_hero_title"] {
  color: #fff;
}

.ppf-hero-copy p {
  margin: 0 0 26px;
  max-width: 560px;
  font-size: 1.08rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.ppf-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.ppf-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  max-width: 720px;
}

.ppf-hero-chips li {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* Trust strip under hero */
.ppf-trust {
  background: var(--dark-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ppf-trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px 20px;
  padding: 28px 0;
}

.ppf-trust-item {
  padding: 4px 8px;
  border-left: 2px solid var(--accent);
  padding-left: 16px;
}

.ppf-trust-item strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.25;
}

.ppf-trust-item span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  line-height: 1.4;
}

/* Sections */
.ppf-section { padding: 88px 0; }
.ppf-section-dark { background: var(--dark); color: #fff; }
.ppf-section-muted { background: var(--gray-light); }

.ppf-section-head { margin-bottom: 8px; }

.ppf-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.ppf-section-dark .ppf-tag { color: var(--accent); }

.ppf-section h2 {
  margin: 0 0 16px;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-wrap: balance;
  color: var(--dark);
}

/* ???????????????? style.css ????? */
.ppf-section-dark h2,
.ppf-section-dark h3 {
  color: #fff;
}

.ppf-lead {
  margin: 0 0 36px;
  max-width: 680px;
  color: var(--gray);
  font-size: 1.05rem;
}

.ppf-section-dark .ppf-lead { color: rgba(255, 255, 255, 0.72); }

.ppf-inline-link {
  color: var(--blue);
  font-weight: 600;
}

.ppf-contact-points {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ppf-contact-points li {
  position: relative;
  padding: 8px 0 8px 22px;
  color: var(--gray);
  font-size: 0.98rem;
}

.ppf-contact-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 212, 0, 0.25);
}

.ppf-intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.ppf-intro-media {
  position: relative;
  padding-bottom: 64px;
}

.ppf-intro-media > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(10, 14, 31, 0.16);
}

.ppf-intro-points { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 10px; }
.ppf-intro-points li {
  position: relative;
  padding: 14px 16px 14px 40px;
  color: var(--dark);
  background: #fff;
  border: 1px solid rgba(9, 56, 211, 0.1);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(10, 14, 31, 0.04);
  font-weight: 500;
  font-size: 0.98rem;
  line-height: 1.45;
}
.ppf-intro-points li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
}

.ppf-intro-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: 0 20px 50px rgba(10, 14, 31, 0.14);
}

.ppf-intro-stat + .ppf-intro-stat {
  border-left: 1px solid #e8ecf4;
  padding-left: 20px;
}

.ppf-intro-card strong {
  display: block;
  font-size: 1.8rem;
  color: var(--blue);
  margin-bottom: 4px;
  line-height: 1.15;
}

.ppf-intro-card span {
  font-size: 0.86rem;
  color: var(--gray);
  line-height: 1.45;
}

/* Feature demos */
.ppf-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ppf-features-primary { margin-bottom: 24px; }

.ppf-features-secondary .ppf-feature {
  box-shadow: none;
  background: rgba(255, 255, 255, 0.72);
}

.ppf-features-secondary .ppf-feature-media {
  aspect-ratio: 16 / 9;
}

.ppf-feature {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(9, 56, 211, 0.08);
  box-shadow: 0 12px 36px rgba(10, 14, 31, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ppf-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(10, 14, 31, 0.1);
}

.ppf-feature-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #e8ecf8, #f7f8fc);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  padding: 16px;
}

.ppf-feature-media.has-video { padding: 0; }

/* ??? YouTube ????controls=0 + ????????? YouTube ?? */
.ppf-feature-media { position: relative; }

.ppf-player {
  position: absolute;
  inset: 0;
  background: #000;
  overflow: hidden;
}

.ppf-player-frame,
.ppf-player-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.ppf-player-shield {
  position: absolute;
  inset: 0 0 44px;
  cursor: pointer;
  z-index: 2;
}

.ppf-player-poster {
  position: absolute;
  inset: 0;
  z-index: 3;
  cursor: pointer;
  display: none;
}

.ppf-player.is-idle .ppf-player-poster { display: block; }

.ppf-player-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ppf-yt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(9, 56, 211, 0.92);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s, background 0.2s;
  pointer-events: none;
}

.ppf-yt-play svg { margin-left: 3px; }

.ppf-player-poster:hover .ppf-yt-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--accent);
  color: var(--dark);
}

.ppf-player-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 44px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
}

.ppf-player.is-idle .ppf-player-bar { display: none; }

.ppf-player-btn {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
}

.ppf-player-btn:hover { background: rgba(255, 255, 255, 0.18); }

.ppf-player-track {
  flex: 1;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  position: relative;
}

.ppf-player-track:hover { height: 7px; }

.ppf-player-fill {
  width: 0%;
  height: 100%;
  border-radius: 999px;
  background: var(--accent);
  transition: width 0.15s linear;
}

.ppf-player-time {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.ppf-player:fullscreen { border-radius: 0; }
.ppf-player:fullscreen .ppf-player-frame iframe { object-fit: contain; }
.ppf-feature-media iframe,
.ppf-feature-media video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
  background: #000;
}

/* On Vehicle ???????????????????????? */
.ppf-cinema-section {
  padding: 0;
  background: var(--dark);
}

.ppf-cinema {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 48px;
  min-height: min(56vw, 92vh);
  background: #000;
  overflow: hidden;
}

.ppf-cinema-slot {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ppf-cinema video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  pointer-events: none;
}

/* YouTube iframe ??? object-fit?????????????????? */
.ppf-cinema iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* width:auto ?? iframe ??? width ??????? 16:9 ???????????? */
  width: auto;
  height: max(100%, 56.25vw);
  aspect-ratio: 16 / 9;
  min-width: 100%;
  border: 0;
  pointer-events: none;
}

.ppf-cinema-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: opacity 0.6s ease;
}

.ppf-cinema.is-playing .ppf-cinema-poster {
  opacity: 0;
  pointer-events: none;
}

.ppf-cinema-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(10, 14, 31, 0.92) 0%,
    rgba(10, 14, 31, 0.35) 26%,
    rgba(10, 14, 31, 0) 46%,
    rgba(10, 14, 31, 0) 62%,
    rgba(10, 14, 31, 0.45) 82%,
    rgba(10, 14, 31, 0.94) 100%
  );
}

.ppf-cinema-copy,
.ppf-cinema-caption {
  position: relative;
  z-index: 3;
}

.ppf-cinema-copy {
  padding-top: 72px;
}

.ppf-cinema-copy h2 {
  max-width: 640px;
}

.ppf-cinema-copy .ppf-lead {
  margin-bottom: 0;
  max-width: 560px;
}

.ppf-cinema-caption {
  padding-bottom: 56px;
}

.ppf-cinema-caption h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  color: #fff;
}

.ppf-cinema-caption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  max-width: 640px;
}

@media (max-width: 767px) {
  .ppf-cinema {
    gap: 140px;
    min-height: 0;
  }
  .ppf-cinema-copy { padding-top: 48px; }
  .ppf-cinema-caption { padding-bottom: 36px; }
}

.ppf-feature-body { padding: 20px 22px 24px; }
.ppf-feature-body h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 700;
}
.ppf-feature-body p {
  margin: 0;
  color: var(--gray);
  font-size: 0.95rem;
}

/* Why / pillars */
.ppf-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ppf-pillar {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 28px 24px 28px;
  overflow: hidden;
}

.ppf-pillar-num {
  display: block;
  margin-bottom: 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.ppf-pillar h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: #fff;
}

.ppf-pillar p { margin: 0; color: rgba(255, 255, 255, 0.75); }

/* CTA strip */
.ppf-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 212, 0, 0.22), transparent 42%),
    linear-gradient(120deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  border-radius: 24px;
  padding: 40px 44px;
}

.ppf-cta h2 { margin: 0 0 8px; color: #fff; max-width: 640px; }
.ppf-cta p { margin: 0; color: rgba(255, 255, 255, 0.85); max-width: 560px; }

/* Specs */
.ppf-specs-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 36px;
  align-items: stretch;
}

.ppf-specs-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 100%;
  box-shadow: 0 22px 56px rgba(10, 14, 31, 0.16);
}

.ppf-specs-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.ppf-specs-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(10, 14, 31, 0.78);
  color: #fff;
  backdrop-filter: blur(6px);
}

.ppf-specs-caption strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.ppf-specs-caption span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.ppf-specs-copy .ppf-lead { margin-bottom: 22px; }

.ppf-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ppf-spec {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  background: #fff;
  border: 1px solid rgba(9, 56, 211, 0.1);
  border-radius: 14px;
  padding: 16px 16px 16px 14px;
  box-shadow: 0 10px 28px rgba(10, 14, 31, 0.05);
}

.ppf-spec-ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.ppf-spec-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 4px;
}

.ppf-spec strong {
  display: block;
  font-size: 0.96rem;
  line-height: 1.4;
  color: var(--dark);
  font-weight: 700;
}

.ppf-specs-note {
  margin: 16px 0 0;
  font-size: 0.88rem;
  color: var(--gray);
}

/* Applications */
.ppf-apps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.ppf-app {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(9, 56, 211, 0.08);
  box-shadow: 0 14px 40px rgba(10, 14, 31, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ppf-app:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(10, 14, 31, 0.12);
}

.ppf-app img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.ppf-app-body { padding: 20px 22px 24px; }
.ppf-app-body h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 700;
}
.ppf-app-body p {
  margin: 0;
  color: var(--gray);
  font-size: 0.96rem;
}

/* Process */
.ppf-process-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.ppf-process-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0 0 22px;
}

.ppf-process-thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(10, 14, 31, 0.1);
}

.ppf-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: ppfstep;
  display: grid;
  gap: 14px;
}

.ppf-steps li {
  counter-increment: ppfstep;
  position: relative;
  padding: 16px 18px 16px 64px;
  background: #fff;
  border: 1px solid rgba(9, 56, 211, 0.1);
  border-radius: 14px;
}

.ppf-steps li::before {
  content: counter(ppfstep, decimal-leading-zero);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ppf-steps strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.02rem;
}

.ppf-steps span {
  color: var(--gray);
  font-size: 0.94rem;
  line-height: 1.5;
}

.ppf-process-media {
  display: grid;
  gap: 16px;
}

.ppf-process-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(10, 14, 31, 0.14);
}

.ppf-process-media img:last-child {
  aspect-ratio: 16 / 9;
}

/* Compare table */
.ppf-compare-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 40px rgba(10, 14, 31, 0.07);
  border: 1px solid rgba(9, 56, 211, 0.08);
}

.ppf-compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.ppf-compare th,
.ppf-compare td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid #e8ecf4;
  vertical-align: top;
  font-size: 0.95rem;
}

.ppf-compare thead th {
  background: var(--dark);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
}

.ppf-compare thead th:last-child {
  color: var(--accent);
}

.ppf-compare tbody th {
  font-weight: 700;
  color: var(--dark);
  width: 26%;
}

.ppf-compare tbody tr:last-child th,
.ppf-compare tbody tr:last-child td {
  border-bottom: 0;
}

/* Shop investment compare */
.ppf-invest {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: stretch;
  margin-top: 8px;
}

.ppf-invest-col {
  border-radius: var(--radius);
  padding: 22px 22px 18px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.ppf-invest-bad {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(220, 70, 70, 0.35);
}

.ppf-invest-good {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 212, 0, 0.35);
}

.ppf-invest-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.ppf-invest-head h3 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 1.15rem;
}

.ppf-invest-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
}

.ppf-invest-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  flex-shrink: 0;
  font-size: 1.05rem;
  line-height: 1;
}

.ppf-invest-bad .ppf-invest-mark {
  background: rgba(220, 70, 70, 0.18);
  color: #ff8e8e;
  border: 1px solid rgba(220, 70, 70, 0.45);
}

.ppf-invest-good .ppf-invest-mark {
  background: rgba(255, 212, 0, 0.16);
  color: var(--accent);
  border: 1px solid rgba(255, 212, 0, 0.45);
}

.ppf-invest-list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.ppf-invest-list li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ppf-invest-good .ppf-invest-list li {
  grid-template-columns: 44px minmax(0, 1fr);
}

.ppf-invest-ico {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.ppf-invest-ico img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.ppf-invest-body {
  min-width: 0;
}

.ppf-invest-list li:first-child {
  border-top: none;
  padding-top: 0;
}

.ppf-invest-list strong {
  display: block;
  color: #fff;
  font-size: 0.98rem;
  margin-bottom: 2px;
}

.ppf-invest-list span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
  line-height: 1.45;
}

.ppf-invest-list em {
  font-style: normal;
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
  color: #ff9b9b;
  padding-top: 2px;
  text-align: right;
}

.ppf-invest-good .ppf-invest-list em {
  color: var(--accent);
}

.ppf-invest-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.ppf-invest-vs span {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--dark);
  background: var(--accent);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.ppf-invest-foot {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ppf-invest-foot span {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
}

.ppf-invest-bad .ppf-invest-foot span {
  color: #ffb4b4;
  background: rgba(220, 70, 70, 0.14);
}

.ppf-invest-good .ppf-invest-foot span {
  color: #ffe57a;
  background: rgba(255, 212, 0, 0.12);
}

.ppf-invest-foot p {
  width: 100%;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
}

.ppf-invest-note {
  margin: 22px auto 0;
  max-width: 760px;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}

.ppf-invest-cta {
  margin-top: 18px;
  text-align: center;
}

.ppf-compare td:last-child {
  font-weight: 700;
  color: var(--blue);
  background: rgba(9, 56, 211, 0.04);
}

/* Ecosystem cards */
.ppf-eco {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ppf-eco-title {
  margin: 0 0 20px;
  font-size: 1.25rem;
  color: #fff;
}

.ppf-eco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ppf-eco-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease, transform 0.2s ease;
}

.ppf-eco-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.ppf-eco-card img {
  width: 88px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
}

.ppf-eco-card strong {
  display: block;
  color: #fff;
  margin-bottom: 4px;
  font-size: 0.98rem;
}

.ppf-eco-card span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.86rem;
  line-height: 1.4;
}

/* Contact */
.ppf-contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.ppf-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 18px 48px rgba(10, 14, 31, 0.08);
}

.ppf-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ppf-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.ppf-form input,
.ppf-form textarea,
.ppf-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d8dee9;
  border-radius: 10px;
  font: inherit;
  margin-bottom: 14px;
}

.ppf-form input:focus,
.ppf-form textarea:focus,
.ppf-form select:focus {
  outline: none;
  border-color: var(--blue);
}

.ppf-submit { width: 100%; border: none; }

/* FAQ */
.ppf-faq {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ppf-faq-item {
  background: var(--white);
  border: 1px solid #e4e8f2;
  border-radius: 14px;
  padding: 0 20px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.ppf-faq-item[open] {
  border-color: rgba(9, 56, 211, 0.28);
  box-shadow: 0 10px 28px rgba(10, 14, 31, 0.06);
}

.ppf-faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.02rem;
  padding: 18px 36px 18px 0;
  position: relative;
  color: var(--dark);
}

.ppf-faq-item summary::-webkit-details-marker { display: none; }

.ppf-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-light);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}

.ppf-faq-item[open] summary::after {
  content: "?";
  background: var(--blue);
  color: #fff;
}

.ppf-faq-item p {
  margin: 0 0 18px;
  color: var(--gray);
  font-size: 0.98rem;
  max-width: 68ch;
}

.ppf-faq-item a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Footer */
.ppf-footer {
  background: var(--dark-2);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 0 28px;
  font-size: 0.92rem;
}

.ppf-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}

.ppf-footer a:hover { color: var(--accent); }
.ppf-footer h4 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 0.95rem;
}
.ppf-footer ul { list-style: none; margin: 0; padding: 0; }
.ppf-footer li { margin-bottom: 8px; }
.ppf-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  text-align: center;
}

.ppf-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.ppf-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .ppf-intro-grid,
  .ppf-contact-grid,
  .ppf-footer-grid,
  .ppf-process-grid,
  .ppf-specs-layout { grid-template-columns: 1fr; }
  .ppf-features,
  .ppf-pillars,
  .ppf-specs,
  .ppf-eco-grid { grid-template-columns: 1fr 1fr; }
  .ppf-trust-row { grid-template-columns: 1fr 1fr; }
  .ppf-apps { grid-template-columns: 1fr 1fr; }
  .ppf-specs-visual img { min-height: 280px; }
  .ppf-invest {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .ppf-invest-vs {
    order: 0;
    margin: -4px 0;
  }
  .ppf-invest-vs span {
    width: 44px;
    height: 44px;
    font-size: 0.9rem;
  }
  .ppf-invest-bad .ppf-invest-list li {
    grid-template-columns: 40px minmax(0, 1fr);
    grid-template-rows: auto auto;
  }
  .ppf-invest-bad .ppf-invest-list em {
    grid-column: 2;
    text-align: left;
    white-space: normal;
  }
  .ppf-invest-ico {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 640px) {
  .ppf-features,
  .ppf-pillars,
  .ppf-form-row,
  .ppf-trust-row,
  .ppf-specs,
  .ppf-apps,
  .ppf-eco-grid { grid-template-columns: 1fr; }
  .ppf-trust-item { border-left: none; border-top: 2px solid var(--accent); padding-left: 0; padding-top: 12px; }
  .ppf-intro-media { padding-bottom: 0; }
  .ppf-intro-card {
    position: static;
    margin: -32px 16px 0;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .ppf-intro-stat + .ppf-intro-stat {
    border-left: none;
    border-top: 1px solid #e8ecf4;
    padding-left: 0;
    padding-top: 14px;
  }
  .ppf-hero {
    min-height: 100vh;
    min-height: 100dvh;
  }
  .ppf-hero-copy { padding: 120px 0 48px; }
  .ppf-hero-actions { flex-direction: column; }
  .ppf-btn { width: 100%; }
  .ppf-section { padding: 64px 0; }
  .ppf-cta { padding: 28px 22px; }
  .ppf-eco-card { grid-template-columns: 72px 1fr; }
}

/* ?? / 4K?? 1920 ??????????????? */
@media (min-width: 1921px) {
  .moke-ppf-page .container {
    width: min(calc(1200px + (100vw - 1920px) * 0.625), 2400px);
  }
  .moke-ppf-page .container.container-1630 {
    width: 100%;
    max-width: min(calc(1630px + (100vw - 1920px) * 0.848958333), 3260px);
  }
  .moke-ppf-page .container.ppf-wide {
    width: min(calc(1520px + (100vw - 1920px) * 0.791666667), 3040px);
  }
  .ppf-section {
    padding: clamp(88px, calc(80px + (100vw - 1920px) * 0.025), 120px) 0;
  }
  .ppf-section h2 {
    font-size: clamp(2rem, calc(1.75rem + (100vw - 1920px) * 0.0013), 3rem);
  }
  .ppf-lead {
    font-size: clamp(1.05rem, calc(1rem + (100vw - 1920px) * 0.0004), 1.25rem);
    max-width: min(calc(680px + (100vw - 1920px) * 0.354), 1360px);
  }
  .ppf-intro-card strong {
    font-size: clamp(1.75rem, calc(1.5rem + (100vw - 1920px) * 0.0013), 2.25rem);
  }
  .ppf-trust-item strong {
    font-size: clamp(1.35rem, calc(1.2rem + (100vw - 1920px) * 0.001), 1.75rem);
  }
}

/* ===== ??/4K??2500????????Intro ??????????1920 ??????? ===== */
@media (min-width: 2500px) {
  .moke-ppf-page #about.ppf-section {
    padding: clamp(100px, 5vw, 140px) 0;
  }
  .moke-ppf-page #about .container.ppf-intro-grid {
    width: min(90vw, 3000px) !important;
    max-width: min(90vw, 3000px) !important;
    gap: clamp(48px, 2.5vw, 72px);
    grid-template-columns: 1.08fr 0.92fr;
  }
  .moke-ppf-page #about .ppf-tag {
    font-size: clamp(14px, 0.7vw, 18px) !important;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
  }
  .moke-ppf-page #about h2 {
    font-size: clamp(40px, 2.1vw, 58px) !important;
    line-height: 1.2 !important;
    margin-bottom: 18px !important;
    font-weight: 700 !important;
  }
  .moke-ppf-page #about .ppf-lead {
    font-size: clamp(18px, 0.95vw, 24px) !important;
    line-height: 1.6 !important;
    max-width: none !important;
  }
  .moke-ppf-page #about .ppf-intro-points {
    margin-top: 28px;
    gap: 12px;
  }
  .moke-ppf-page #about .ppf-intro-points li {
    font-size: clamp(17px, 0.9vw, 22px) !important;
    line-height: 1.45 !important;
    padding: 16px 18px 16px 44px !important;
    border-radius: 14px;
    font-weight: 500 !important;
  }
  .moke-ppf-page #about .ppf-intro-points li::before {
    width: 11px;
    height: 11px;
    left: 18px;
  }
  .moke-ppf-page #about .ppf-intro-media {
    padding-bottom: 80px;
  }
  .moke-ppf-page #about .ppf-intro-media > img {
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(10, 14, 31, 0.16);
  }
  .moke-ppf-page #about .ppf-intro-card {
    left: 24px;
    right: 24px;
    padding: 24px 28px;
    gap: 20px;
    border-radius: 16px;
  }
  .moke-ppf-page #about .ppf-intro-stat + .ppf-intro-stat {
    padding-left: 20px;
  }
  .moke-ppf-page #about .ppf-intro-card strong {
    font-size: clamp(32px, 1.8vw, 44px) !important;
    margin-bottom: 6px;
  }
  .moke-ppf-page #about .ppf-intro-card span {
    font-size: clamp(15px, 0.8vw, 18px) !important;
    line-height: 1.45;
  }

  /* Specs / Film profile?? Intro ?????? */
  .moke-ppf-page #specs.ppf-section {
    padding: clamp(100px, 5vw, 140px) 0;
  }
  .moke-ppf-page #specs > .container {
    width: min(90vw, 3000px) !important;
    max-width: min(90vw, 3000px) !important;
  }
  .moke-ppf-page #specs .ppf-specs-layout {
    gap: clamp(40px, 2.4vw, 64px);
  }
  .moke-ppf-page #specs .ppf-specs-visual {
    border-radius: 22px;
  }
  .moke-ppf-page #specs .ppf-specs-visual img {
    min-height: clamp(480px, 32vw, 640px) !important;
  }
  .moke-ppf-page #specs .ppf-specs-caption {
    left: 22px;
    right: 22px;
    bottom: 22px;
    padding: 18px 22px;
    border-radius: 16px;
  }
  .moke-ppf-page #specs .ppf-specs-caption strong {
    font-size: clamp(18px, 0.95vw, 24px) !important;
  }
  .moke-ppf-page #specs .ppf-specs-caption span {
    font-size: clamp(15px, 0.8vw, 18px) !important;
  }
  .moke-ppf-page #specs .ppf-tag {
    font-size: clamp(14px, 0.7vw, 18px) !important;
    margin-bottom: 14px;
  }
  .moke-ppf-page #specs h2 {
    font-size: clamp(40px, 2.1vw, 58px) !important;
    line-height: 1.2 !important;
    margin-bottom: 18px !important;
    font-weight: 700 !important;
  }
  .moke-ppf-page #specs .ppf-lead {
    font-size: clamp(18px, 0.95vw, 24px) !important;
    line-height: 1.6 !important;
    max-width: none !important;
    margin-bottom: 28px !important;
  }
  .moke-ppf-page #specs .ppf-specs {
    gap: 14px;
  }
  .moke-ppf-page #specs .ppf-spec {
    grid-template-columns: clamp(48px, 2.4vw, 56px) 1fr;
    gap: 14px;
    padding: 18px 18px 18px 16px;
    border-radius: 16px;
  }
  .moke-ppf-page #specs .ppf-spec-ico {
    width: clamp(48px, 2.4vw, 56px);
    height: clamp(48px, 2.4vw, 56px);
    border-radius: 14px;
    font-size: clamp(12px, 0.65vw, 15px);
  }
  .moke-ppf-page #specs .ppf-spec-label {
    font-size: clamp(12px, 0.65vw, 15px) !important;
    margin-bottom: 6px;
  }
  .moke-ppf-page #specs .ppf-spec strong {
    font-size: clamp(17px, 0.9vw, 22px) !important;
    line-height: 1.4 !important;
  }
  .moke-ppf-page #specs .ppf-specs-note {
    margin-top: 20px;
    font-size: clamp(15px, 0.8vw, 18px) !important;
  }

  /* Process / Shop workflow???????????????????? */
  .moke-ppf-page #process.ppf-section {
    padding: clamp(88px, 4.5vw, 120px) 0;
  }
  .moke-ppf-page #process > .container {
    width: min(86vw, 1680px) !important;
    max-width: min(86vw, 1680px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .moke-ppf-page #process .ppf-process-grid {
    gap: 28px !important;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr) !important;
    align-items: center !important;
  }
  .moke-ppf-page #process .ppf-tag {
    font-size: clamp(14px, 0.65vw, 17px) !important;
    margin-bottom: 14px;
  }
  .moke-ppf-page #process h2 {
    font-size: clamp(38px, 1.9vw, 52px) !important;
    line-height: 1.2 !important;
    margin-bottom: 16px !important;
    font-weight: 700 !important;
    max-width: 18ch;
  }
  .moke-ppf-page #process .ppf-lead {
    font-size: clamp(18px, 0.9vw, 22px) !important;
    line-height: 1.55 !important;
    max-width: 42em !important;
    margin-bottom: 20px !important;
  }
  .moke-ppf-page #process .ppf-process-thumbs {
    gap: 10px;
    margin-bottom: 22px;
    max-width: 380px;
  }
  .moke-ppf-page #process .ppf-process-thumbs img {
    border-radius: 12px;
  }
  .moke-ppf-page #process .ppf-steps {
    gap: 14px;
    max-width: 680px;
  }
  .moke-ppf-page #process .ppf-steps li {
    padding: 16px 18px 16px 64px;
    border-radius: 14px;
  }
  .moke-ppf-page #process .ppf-steps li::before {
    width: 40px;
    height: 40px;
    left: 14px;
    top: 16px;
    font-size: 0.82rem;
  }
  .moke-ppf-page #process .ppf-steps strong {
    font-size: clamp(18px, 0.95vw, 22px) !important;
    margin-bottom: 6px;
  }
  .moke-ppf-page #process .ppf-steps span {
    font-size: clamp(15px, 0.8vw, 18px) !important;
    line-height: 1.5 !important;
  }
  .moke-ppf-page #process .ppf-process-media {
    gap: 14px;
    max-width: none;
    width: 100%;
    justify-self: stretch;
  }
  .moke-ppf-page #process .ppf-process-media img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(10, 14, 31, 0.12);
    max-height: none;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }
  .moke-ppf-page #process .ppf-process-media img:last-child {
    aspect-ratio: 16 / 9;
  }

  /* Compare / Why film wins?? Process ?????? */
  .moke-ppf-page #compare.ppf-section {
    padding: clamp(88px, 4.5vw, 120px) 0;
  }
  .moke-ppf-page #compare > .container {
    width: min(86vw, 1680px) !important;
    max-width: min(86vw, 1680px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .moke-ppf-page #compare .ppf-section-head {
    margin-bottom: 28px;
  }
  .moke-ppf-page #compare .ppf-tag {
    font-size: clamp(14px, 0.65vw, 17px) !important;
    margin-bottom: 14px;
  }
  .moke-ppf-page #compare h2 {
    font-size: clamp(38px, 1.9vw, 52px) !important;
    line-height: 1.2 !important;
    margin-bottom: 14px !important;
    font-weight: 700 !important;
  }
  .moke-ppf-page #compare .ppf-lead {
    font-size: clamp(18px, 0.9vw, 22px) !important;
    line-height: 1.55 !important;
    max-width: 42em !important;
  }
  .moke-ppf-page #compare .ppf-compare-wrap {
    border-radius: 18px;
    box-shadow: 0 18px 48px rgba(10, 14, 31, 0.08);
  }
  .moke-ppf-page #compare .ppf-compare {
    min-width: 0;
  }
  .moke-ppf-page #compare .ppf-compare th,
  .moke-ppf-page #compare .ppf-compare td {
    padding: 20px 22px !important;
    font-size: clamp(16px, 0.85vw, 20px) !important;
    line-height: 1.45 !important;
  }
  .moke-ppf-page #compare .ppf-compare thead th {
    font-size: clamp(15px, 0.8vw, 18px) !important;
    padding: 18px 22px !important;
  }
  .moke-ppf-page #compare .ppf-compare tbody th {
    font-size: clamp(16px, 0.85vw, 20px) !important;
  }

  /* Invest / Shop investment?????????????? */
  .moke-ppf-page #invest.ppf-section {
    padding: clamp(88px, 4.5vw, 120px) 0;
  }
  .moke-ppf-page #invest > .container {
    width: min(86vw, 1680px) !important;
    max-width: min(86vw, 1680px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .moke-ppf-page #invest .ppf-section-head {
    margin-bottom: 28px;
  }
  .moke-ppf-page #invest .ppf-tag {
    font-size: clamp(14px, 0.65vw, 17px) !important;
    margin-bottom: 14px;
  }
  .moke-ppf-page #invest h2 {
    font-size: clamp(38px, 1.9vw, 52px) !important;
    line-height: 1.2 !important;
    margin-bottom: 14px !important;
    font-weight: 700 !important;
  }
  .moke-ppf-page #invest .ppf-lead {
    font-size: clamp(18px, 0.9vw, 22px) !important;
    line-height: 1.55 !important;
    max-width: 48em !important;
  }
  .moke-ppf-page #invest .ppf-invest {
    gap: 24px !important;
    margin-top: 12px;
  }
  .moke-ppf-page #invest .ppf-invest-col {
    padding: 28px 26px 22px !important;
    border-radius: 18px;
  }
  .moke-ppf-page #invest .ppf-invest-head {
    gap: 16px;
    margin-bottom: 22px;
  }
  .moke-ppf-page #invest .ppf-invest-head h3 {
    font-size: clamp(20px, 1.05vw, 26px) !important;
  }
  .moke-ppf-page #invest .ppf-invest-head p {
    font-size: clamp(15px, 0.8vw, 18px) !important;
  }
  .moke-ppf-page #invest .ppf-invest-mark {
    width: clamp(40px, 2.1vw, 48px) !important;
    height: clamp(40px, 2.1vw, 48px) !important;
    font-size: clamp(18px, 1vw, 22px) !important;
  }
  .moke-ppf-page #invest .ppf-invest-list {
    gap: 14px;
  }
  .moke-ppf-page #invest .ppf-invest-list li {
    gap: 14px;
    padding: 6px 0;
  }
  .moke-ppf-page #invest .ppf-invest-ico,
  .moke-ppf-page #invest .ppf-invest-ico img {
    width: clamp(48px, 2.5vw, 56px) !important;
    height: clamp(48px, 2.5vw, 56px) !important;
  }
  .moke-ppf-page #invest .ppf-invest-body strong {
    font-size: clamp(17px, 0.9vw, 21px) !important;
  }
  .moke-ppf-page #invest .ppf-invest-body span {
    font-size: clamp(14px, 0.75vw, 17px) !important;
  }
  .moke-ppf-page #invest .ppf-invest-list em {
    font-size: clamp(15px, 0.8vw, 18px) !important;
  }
  .moke-ppf-page #invest .ppf-invest-vs span {
    width: clamp(52px, 2.8vw, 64px) !important;
    height: clamp(52px, 2.8vw, 64px) !important;
    font-size: clamp(16px, 0.85vw, 20px) !important;
  }
  .moke-ppf-page #invest .ppf-invest-foot span {
    font-size: clamp(13px, 0.7vw, 15px) !important;
    padding: 8px 14px !important;
  }
  .moke-ppf-page #invest .ppf-invest-foot p {
    font-size: clamp(14px, 0.75vw, 17px) !important;
  }
  .moke-ppf-page #invest .ppf-invest-note {
    font-size: clamp(15px, 0.8vw, 18px) !important;
    margin-top: 28px !important;
  }
  .moke-ppf-page #invest .ppf-invest-cta .ppf-btn {
    font-size: clamp(16px, 0.85vw, 19px) !important;
    padding: 16px 32px !important;
  }

  /* Why MOKE / ecosystem?????????????? */
  .moke-ppf-page #why.ppf-section {
    padding: clamp(88px, 4.5vw, 120px) 0;
  }
  .moke-ppf-page #why > .container {
    width: min(86vw, 1680px) !important;
    max-width: min(86vw, 1680px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .moke-ppf-page #why .ppf-section-head {
    margin-bottom: 28px;
  }
  .moke-ppf-page #why .ppf-tag {
    font-size: clamp(14px, 0.65vw, 17px) !important;
    margin-bottom: 14px;
  }
  .moke-ppf-page #why h2 {
    font-size: clamp(38px, 1.9vw, 52px) !important;
    line-height: 1.2 !important;
    margin-bottom: 14px !important;
    font-weight: 700 !important;
  }
  .moke-ppf-page #why .ppf-lead {
    font-size: clamp(18px, 0.9vw, 22px) !important;
    line-height: 1.55 !important;
    max-width: 48em !important;
  }
  .moke-ppf-page #why .ppf-pillars {
    gap: 22px !important;
  }
  .moke-ppf-page #why .ppf-pillar {
    padding: 30px 26px 28px !important;
    border-radius: 18px;
  }
  .moke-ppf-page #why .ppf-pillar-num {
    font-size: clamp(14px, 0.7vw, 17px) !important;
    margin-bottom: 16px;
  }
  .moke-ppf-page #why .ppf-pillar h3 {
    font-size: clamp(20px, 1.05vw, 26px) !important;
    margin-bottom: 12px !important;
  }
  .moke-ppf-page #why .ppf-pillar p {
    font-size: clamp(15px, 0.8vw, 18px) !important;
    line-height: 1.55 !important;
  }
  .moke-ppf-page #why .ppf-eco {
    margin-top: 52px;
    padding-top: 40px;
  }
  .moke-ppf-page #why .ppf-eco-title {
    font-size: clamp(22px, 1.15vw, 28px) !important;
    margin-bottom: 22px !important;
  }
  .moke-ppf-page #why .ppf-eco-grid {
    gap: 20px !important;
  }
  .moke-ppf-page #why .ppf-eco-card {
    grid-template-columns: clamp(110px, 6vw, 132px) 1fr !important;
    gap: 16px !important;
    padding: 16px !important;
    border-radius: 16px;
  }
  .moke-ppf-page #why .ppf-eco-card img {
    width: clamp(110px, 6vw, 132px) !important;
    height: clamp(88px, 4.8vw, 108px) !important;
    border-radius: 12px;
  }
  .moke-ppf-page #why .ppf-eco-card strong {
    font-size: clamp(17px, 0.9vw, 21px) !important;
    margin-bottom: 6px !important;
  }
  .moke-ppf-page #why .ppf-eco-card span {
    font-size: clamp(14px, 0.75vw, 17px) !important;
    line-height: 1.45 !important;
  }
  .moke-ppf-page #why .ppf-cta {
    margin-top: 48px;
    gap: 36px !important;
    padding: 56px 60px !important;
    border-radius: 32px;
    align-items: center;
  }
  .moke-ppf-page #why .ppf-cta h2 {
    font-size: clamp(34px, 1.75vw, 46px) !important;
    line-height: 1.2 !important;
    margin-bottom: 14px !important;
    max-width: 18em !important;
    font-weight: 700 !important;
  }
  .moke-ppf-page #why .ppf-cta p {
    font-size: clamp(18px, 0.95vw, 23px) !important;
    line-height: 1.55 !important;
    max-width: 36em !important;
  }
  .moke-ppf-page #why .ppf-cta .ppf-btn {
    font-size: clamp(18px, 0.95vw, 22px) !important;
    padding: 20px 40px !important;
    border-radius: 999px;
    white-space: nowrap;
  }

  /* FAQ?????????????? */
  .moke-ppf-page #faq.ppf-section {
    padding: clamp(88px, 4.5vw, 120px) 0;
  }
  .moke-ppf-page #faq > .container {
    width: min(86vw, 1680px) !important;
    max-width: min(86vw, 1680px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .moke-ppf-page #faq .ppf-section-head {
    margin-bottom: 28px;
    text-align: left;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
  .moke-ppf-page #faq .ppf-tag {
    font-size: clamp(14px, 0.65vw, 17px) !important;
    margin-bottom: 14px;
  }
  .moke-ppf-page #faq h2 {
    font-size: clamp(38px, 1.9vw, 52px) !important;
    line-height: 1.2 !important;
    margin-bottom: 14px !important;
    font-weight: 700 !important;
  }
  .moke-ppf-page #faq .ppf-lead {
    font-size: clamp(18px, 0.9vw, 22px) !important;
    line-height: 1.55 !important;
    max-width: 48em !important;
  }
  .moke-ppf-page #faq .ppf-faq {
    max-width: 1100px !important;
    gap: 14px !important;
  }
  .moke-ppf-page #faq .ppf-faq-item {
    border-radius: 16px;
    padding: 0 26px;
  }
  .moke-ppf-page #faq .ppf-faq-item summary {
    font-size: clamp(18px, 0.95vw, 22px) !important;
    padding: 22px 48px 22px 0 !important;
    line-height: 1.35 !important;
  }
  .moke-ppf-page #faq .ppf-faq-item summary::after {
    width: 34px;
    height: 34px;
    font-size: 1.25rem;
  }
  .moke-ppf-page #faq .ppf-faq-item p {
    font-size: clamp(16px, 0.85vw, 19px) !important;
    line-height: 1.55 !important;
    margin-bottom: 22px !important;
    max-width: 72ch !important;
  }

  /* Contact / Samples & dealers?????????????? */
  .moke-ppf-page #contact.ppf-section {
    padding: clamp(88px, 4.5vw, 120px) 0;
  }
  .moke-ppf-page #contact > .container.ppf-contact-grid {
    width: min(86vw, 1680px) !important;
    max-width: min(86vw, 1680px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    gap: 48px !important;
    grid-template-columns: 0.95fr 1.05fr !important;
  }
  .moke-ppf-page #contact .ppf-tag {
    font-size: clamp(14px, 0.65vw, 17px) !important;
    margin-bottom: 14px;
  }
  .moke-ppf-page #contact h2 {
    font-size: clamp(38px, 1.9vw, 52px) !important;
    line-height: 1.2 !important;
    margin-bottom: 14px !important;
    font-weight: 700 !important;
  }
  .moke-ppf-page #contact .ppf-lead {
    font-size: clamp(18px, 0.9vw, 22px) !important;
    line-height: 1.55 !important;
    max-width: 38em !important;
    margin-bottom: 22px !important;
  }
  .moke-ppf-page #contact .ppf-contact-points {
    margin-top: 8px;
  }
  .moke-ppf-page #contact .ppf-contact-points li {
    font-size: clamp(16px, 0.85vw, 19px) !important;
    padding: 10px 0 10px 28px !important;
    line-height: 1.45 !important;
  }
  .moke-ppf-page #contact .ppf-contact-points li::before {
    width: 10px;
    height: 10px;
    top: 18px;
    box-shadow: 0 0 0 4px rgba(255, 212, 0, 0.25);
  }
  .moke-ppf-page #contact .ppf-form {
    padding: 36px 34px !important;
    border-radius: 20px;
    box-shadow: 0 22px 56px rgba(10, 14, 31, 0.1);
  }
  .moke-ppf-page #contact .ppf-form-row {
    gap: 16px;
  }
  .moke-ppf-page #contact .ppf-form label {
    font-size: clamp(14px, 0.7vw, 16px) !important;
    margin-bottom: 8px !important;
  }
  .moke-ppf-page #contact .ppf-form input,
  .moke-ppf-page #contact .ppf-form textarea,
  .moke-ppf-page #contact .ppf-form select {
    padding: 14px 16px !important;
    border-radius: 12px;
    margin-bottom: 16px !important;
    font-size: clamp(15px, 0.8vw, 18px) !important;
  }
  .moke-ppf-page #contact .ppf-form textarea {
    min-height: 140px;
  }
  .moke-ppf-page #contact .ppf-form .ppf-btn,
  .moke-ppf-page #contact .ppf-form .ppf-submit {
    font-size: clamp(16px, 0.85vw, 19px) !important;
    padding: 16px 28px !important;
  }
}