/* =========================================================
   Products page — Laser Machine & MPCVD
   Loaded only on products.php (via $extra_head in header.php)
   ========================================================= */

:root {
  --pp-navy: #0a1a3a;
  --pp-navy-2: #10306b;
  --pp-blue: #1f5fe0;
  --pp-blue-2: #3b82f6;
  --pp-blue-soft: #eaf1ff;
  --pp-cyan: #7cc4ff;
  --pp-ink: #0f172a;
  --pp-muted: #5a6a82;
  --pp-line: #e2e8f2;
  --pp-bg: #f4f7fc;
  --pp-white: #ffffff;
  --pp-green: #16a34a;
  --pp-radius: 18px;
  --pp-radius-lg: 28px;
  --pp-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 10px 30px rgba(15, 23, 42, 0.06);
  --pp-shadow-lg: 0 24px 60px rgba(10, 26, 58, 0.18);
  --pp-head: 'Plus Jakarta Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --pp-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

.pp {
  font-family: var(--pp-body);
  color: var(--pp-ink);
  background: var(--pp-bg);
  padding: 72px 0 96px;
  -webkit-font-smoothing: antialiased;
}

.pp h1, .pp h2, .pp h3, .pp h4 {
  font-family: var(--pp-head);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.pp p { line-height: 1.7; }

.pp-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 20px;
}

.pp [id] { scroll-margin-top: 150px; }

/* ---------- Shared bits ---------- */
.pp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--pp-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pp-blue);
  margin-bottom: 14px;
}

.pp-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.pp-head {
  max-width: 720px;
  margin-bottom: 44px;
}

.pp-head--center {
  margin-inline: auto;
  text-align: center;
}

.pp-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  color: var(--pp-navy);
  margin-bottom: 14px;
}

.pp-head p {
  color: var(--pp-muted);
  font-size: 16px;
}

.pp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 12px;
  font-family: var(--pp-head);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

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

.pp-btn--primary {
  background: var(--pp-blue);
  color: #fff;
  box-shadow: 0 10px 24px rgba(31, 95, 224, 0.35);
}

.pp-btn--primary:hover { background: #1a51c2; }

.pp-btn--light {
  background: #fff;
  color: var(--pp-navy);
}

.pp-btn--ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}

.pp-btn--ghost:hover { background: rgba(255, 255, 255, 0.1); }

.pp-btn--whatsapp {
  background: #25d366;
  color: #fff;
}

.pp-icon {
  flex: none;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--pp-blue-soft);
  color: var(--pp-blue);
  font-size: 20px;
}

/* ---------- Intro + Tabs ---------- */
.pp-intro {
  text-align: center;
  margin-bottom: 48px;
}

.pp-intro h1 {
  font-size: clamp(32px, 4.6vw, 52px);
  font-weight: 800;
  color: var(--pp-navy);
  margin-bottom: 14px;
}

.pp-intro p {
  max-width: 640px;
  margin: 0 auto 36px;
  color: var(--pp-muted);
  font-size: 17px;
}

.pp-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  width: min(640px, 100%);
  margin: 0 auto;
  padding: 7px;
  background: var(--pp-white);
  border: 1px solid var(--pp-line);
  border-radius: 22px;
  box-shadow: var(--pp-shadow);
}

.pp-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: var(--pp-ink);
  text-align: left;
  cursor: pointer;
  font: inherit;
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.pp-tab:hover:not(.is-active) { background: var(--pp-bg); }

.pp-tab:focus-visible {
  outline: 3px solid rgba(31, 95, 224, 0.35);
  outline-offset: 2px;
}

.pp-tab .pp-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 18px;
  transition: background 0.25s ease, color 0.25s ease;
}

.pp-tab-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.pp-tab-text strong {
  font-family: var(--pp-head);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.pp-tab-text small {
  font-size: 12.5px;
  color: var(--pp-muted);
  line-height: 1.4;
  transition: color 0.25s ease;
}

.pp-tab.is-active {
  background: linear-gradient(135deg, var(--pp-navy) 0%, var(--pp-navy-2) 60%, var(--pp-blue) 130%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(10, 26, 58, 0.28);
}

.pp-tab.is-active .pp-icon {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.pp-tab.is-active .pp-tab-text small { color: rgba(255, 255, 255, 0.72); }

.pp-panel { animation: ppFade 0.45s ease both; }
.pp-panel[hidden] { display: none; }

@keyframes ppFade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

/* ---------- Laser Machine panel ---------- */
.pp-laser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}

.pp-product {
  display: flex;
  flex-direction: column;
  background: var(--pp-white);
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius);
  overflow: hidden;
  box-shadow: var(--pp-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pp-product:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
}

.pp-product-media {
  background: radial-gradient(circle at 50% 40%, #ffffff 0%, #eef3fb 70%);
  padding: 24px;
  border-bottom: 1px solid var(--pp-line);
}

.pp-product-media img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.pp-product:hover .pp-product-media img { transform: scale(1.04); }

.pp-product-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 24px 24px;
}

.pp-chip {
  align-self: flex-start;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--pp-blue-soft);
  color: var(--pp-blue);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.pp-product-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--pp-navy);
  margin-bottom: 8px;
}

.pp-product-body p {
  color: var(--pp-muted);
  font-size: 15px;
  margin-bottom: 18px;
}

.pp-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--pp-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--pp-blue);
}

.pp-link i { transition: transform 0.2s ease; }
.pp-link:hover i { transform: translateX(4px); }

/* ---------- MPCVD: sections spacing ---------- */
.mp-block { margin-top: 96px; }

/* ---------- MPCVD: Hero ---------- */
.mp-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding: 64px;
  border-radius: var(--pp-radius-lg);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 85% 15%, rgba(59, 130, 246, 0.45) 0%, transparent 45%),
    radial-gradient(circle at 10% 100%, rgba(124, 196, 255, 0.18) 0%, transparent 40%),
    linear-gradient(135deg, #07142e 0%, var(--pp-navy) 45%, var(--pp-navy-2) 100%);
  box-shadow: var(--pp-shadow-lg);
}

.mp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 70%);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, transparent 70%);
}

.mp-hero .pp-eyebrow { color: var(--pp-cyan); }

.mp-hero h2 {
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 800;
  margin-bottom: 18px;
}

.mp-hero h2 span {
  display: block;
  background: linear-gradient(90deg, #ffffff 0%, #9fd0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mp-hero-sub {
  font-family: var(--pp-head);
  font-size: 18px;
  font-weight: 600;
  color: #dbe7ff;
  margin-bottom: 10px;
}

.mp-hero-lead {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  max-width: 520px;
  margin-bottom: 30px;
}

.mp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.mp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 24px;
}

.mp-stat + .mp-stat {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  padding-left: 20px;
}

.mp-stat strong {
  display: block;
  font-family: var(--pp-head);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
}

.mp-stat span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
}

.mp-hero-media {
  position: relative;
  margin: 0;
}

.mp-hero-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.mp-float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--pp-navy);
  box-shadow: 0 16px 36px rgba(10, 26, 58, 0.28);
  font-family: var(--pp-head);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
}

.mp-float-chip .pp-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  font-size: 16px;
}

.mp-float-chip small {
  display: block;
  font-family: var(--pp-body);
  font-weight: 500;
  font-size: 12px;
  color: var(--pp-muted);
}

.mp-float-chip--bl { left: -18px; bottom: 28px; }
.mp-float-chip--tr { right: -14px; top: 24px; }

/* ---------- MPCVD: Highlights ---------- */
.mp-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.mp-highlight {
  padding: 26px 24px;
  background: var(--pp-white);
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius);
  box-shadow: var(--pp-shadow);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.mp-highlight:hover {
  transform: translateY(-4px);
  border-color: #c8d7f5;
}

.mp-highlight .pp-icon { margin-bottom: 18px; }

.mp-highlight h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--pp-navy);
  margin-bottom: 6px;
}

.mp-highlight p {
  font-size: 14px;
  color: var(--pp-muted);
}

/* ---------- MPCVD: Company profile ---------- */
.mp-about {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.mp-about-media {
  position: relative;
  margin: 0;
}

.mp-about-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--pp-radius-lg);
  box-shadow: var(--pp-shadow-lg);
}

.mp-about-media figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(10, 26, 58, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-family: var(--pp-head);
  font-weight: 600;
  font-size: 15px;
}

.mp-about-media figcaption small {
  display: block;
  font-family: var(--pp-body);
  font-weight: 400;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.mp-about-text .pp-head { margin-bottom: 26px; }

.mp-vm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mp-vm-card {
  padding: 22px;
  background: var(--pp-white);
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius);
  box-shadow: var(--pp-shadow);
}

.mp-vm-card .pp-icon {
  width: 42px;
  height: 42px;
  font-size: 18px;
  margin-bottom: 14px;
}

.mp-vm-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--pp-navy);
  margin-bottom: 6px;
}

.mp-vm-card p {
  font-size: 14px;
  color: var(--pp-muted);
}

.mp-strengths {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 40px;
  background: var(--pp-white);
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius);
  box-shadow: var(--pp-shadow);
  overflow: hidden;
}

.mp-strength {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 26px 16px;
  text-align: center;
  font-family: var(--pp-head);
  font-weight: 700;
  font-size: 14.5px;
  line-height: 1.35;
  color: var(--pp-navy);
}

.mp-strength + .mp-strength { border-left: 1px solid var(--pp-line); }

/* ---------- MPCVD: Process flow ---------- */
.mp-process {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  list-style: none;
  counter-reset: step;
}

.mp-step {
  position: relative;
  padding: 24px 18px 22px;
  background: var(--pp-white);
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius);
  box-shadow: var(--pp-shadow);
}

.mp-step:not(:last-child)::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 44px;
  right: -15px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--pp-blue);
  color: #fff;
  font-size: 9px;
  box-shadow: 0 0 0 4px var(--pp-bg);
}

.mp-step-num {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--pp-head);
  font-weight: 800;
  font-size: 13px;
  color: #b4c3dc;
}

.mp-step .pp-icon { margin-bottom: 16px; }

.mp-step:nth-child(4) .pp-icon,
.mp-step:nth-child(5) .pp-icon {
  background: linear-gradient(135deg, #6d28d9, #3b82f6);
  color: #fff;
}

.mp-step:last-child .pp-icon {
  background: linear-gradient(135deg, var(--pp-navy), var(--pp-blue));
  color: #fff;
}

.mp-step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--pp-navy);
  margin-bottom: 6px;
}

.mp-step p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--pp-muted);
}

/* ---------- MPCVD: Key system areas ---------- */
.mp-systems {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.mp-systems-media {
  position: sticky;
  top: 150px;
  margin: 0;
}

.mp-systems-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--pp-radius-lg);
  box-shadow: var(--pp-shadow-lg);
}

.mp-systems-media .mp-float-chip { left: 20px; bottom: 20px; }

.mp-system-list {
  list-style: none;
  background: var(--pp-white);
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius);
  box-shadow: var(--pp-shadow);
}

.mp-system {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 22px;
}

.mp-system + .mp-system { border-top: 1px solid var(--pp-line); }

.mp-system .pp-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--pp-navy);
  color: #fff;
  font-size: 18px;
}

.mp-system h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--pp-navy);
  margin-bottom: 2px;
}

.mp-system p {
  font-size: 14px;
  color: var(--pp-muted);
  line-height: 1.5;
}

/* ---------- MPCVD: Gallery (bento) ---------- */
.mp-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.mp-shot {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  border-radius: var(--pp-radius);
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 1 / 1;
  background: #dfe7f3;
}

.mp-shot--big {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.mp-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.mp-shot:hover img { transform: scale(1.06); }

.mp-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7, 20, 46, 0.85) 100%);
}

.mp-shot-cap {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
  text-align: left;
  font-family: var(--pp-head);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
}

.mp-shot--big .mp-shot-cap { font-size: 20px; }

.mp-shot-cap i {
  flex: none;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  font-size: 13px;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mp-shot:hover .mp-shot-cap i,
.mp-shot:focus-visible .mp-shot-cap i {
  opacity: 1;
  transform: none;
}

.mp-shot:focus-visible {
  outline: 3px solid var(--pp-blue);
  outline-offset: 3px;
}

/* Lightbox */
.mp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(5, 12, 28, 0.96);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: ppFade 0.25s ease both;
}

.mp-lightbox[hidden] { display: none; }

.mp-lightbox figure {
  margin: 0;
  max-width: min(88vw, 820px);
  text-align: center;
}

.mp-lightbox img {
  max-height: 78vh;
  width: auto;
  margin: 0 auto;
  border-radius: 16px;
}

.mp-lightbox figcaption {
  margin-top: 14px;
  color: #fff;
  font-family: var(--pp-head);
  font-weight: 600;
  font-size: 16px;
}

.mp-lb-btn {
  position: absolute;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.mp-lb-btn:hover { background: rgba(255, 255, 255, 0.24); }
.mp-lb-close { top: 20px; right: 20px; }
.mp-lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.mp-lb-next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ---------- MPCVD: Specs + deliverables ---------- */
.mp-specs {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.mp-card {
  padding: 32px;
  background: var(--pp-white);
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius-lg);
  box-shadow: var(--pp-shadow);
}

.mp-card-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.mp-card-title h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--pp-navy);
}

.mp-spec-table {
  width: 100%;
  border-collapse: collapse;
}

.mp-spec-table th,
.mp-spec-table td {
  padding: 14px 4px;
  border-bottom: 1px dashed var(--pp-line);
  text-align: left;
  vertical-align: top;
  font-size: 15px;
}

.mp-spec-table tr:last-child th,
.mp-spec-table tr:last-child td { border-bottom: 0; }

.mp-spec-table th {
  width: 42%;
  padding-right: 16px;
  font-weight: 500;
  color: var(--pp-muted);
}

.mp-spec-table td {
  font-weight: 600;
  color: var(--pp-ink);
}

.mp-spec-table .mp-big {
  font-family: var(--pp-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--pp-blue);
}

.mp-included {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  background: #e8f7ee;
  color: var(--pp-green);
  font-size: 13px;
  font-weight: 600;
}

.mp-card--dark {
  position: relative;
  overflow: hidden;
  color: #fff;
  border: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.5) 0%, transparent 50%),
    linear-gradient(160deg, var(--pp-navy) 0%, var(--pp-navy-2) 100%);
}

.mp-card--dark {
  display: flex;
  flex-direction: column;
}

.mp-card--dark .mp-card-title h3 { color: #fff; }

.mp-deliver-foot {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.mp-deliver-foot p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14.5px;
  margin-bottom: 14px;
}

.mp-checklist { margin-bottom: 28px; }

.mp-card--dark .pp-icon {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.mp-checklist { list-style: none; }

.mp-checklist li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  font-weight: 500;
  font-size: 15px;
}

.mp-checklist li + li { border-top: 1px solid rgba(255, 255, 255, 0.1); }

.mp-checklist i {
  flex: none;
  color: var(--pp-cyan);
  font-size: 18px;
}

/* ---------- MPCVD: Why partner ---------- */
.mp-why {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mp-why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  background: var(--pp-white);
  border: 1px solid var(--pp-line);
  border-radius: var(--pp-radius);
  box-shadow: var(--pp-shadow);
}

.mp-why-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--pp-navy);
  margin-bottom: 4px;
}

.mp-why-item p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--pp-muted);
}

/* ---------- MPCVD: Contact CTA ---------- */
.mp-cta {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding: 56px;
  border-radius: var(--pp-radius-lg);
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 100%, rgba(59, 130, 246, 0.45) 0%, transparent 45%),
    linear-gradient(135deg, #07142e 0%, var(--pp-navy-2) 100%);
  box-shadow: var(--pp-shadow-lg);
}

.mp-cta .pp-eyebrow { color: var(--pp-cyan); }

.mp-cta h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 800;
  margin-bottom: 14px;
}

.mp-cta-text > p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 28px;
}

.mp-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.mp-contact {
  padding: 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.mp-contact h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.mp-contact ul { list-style: none; }

.mp-contact li {
  display: flex;
  gap: 14px;
  padding: 10px 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
}

.mp-contact li i {
  flex: none;
  width: 18px;
  margin-top: 4px;
  color: var(--pp-cyan);
  text-align: center;
}

.mp-contact a { color: #fff; font-weight: 600; word-break: break-word; }
.mp-contact a:hover { color: var(--pp-cyan); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1100px) {
  .mp-process { grid-template-columns: repeat(3, 1fr); }
  .mp-step:nth-child(3n)::after { display: none; }
  .mp-why { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .mp-hero {
    grid-template-columns: 1fr;
    padding: 48px 40px;
    gap: 40px;
  }

  .mp-hero-media {
    max-width: 560px;
    width: 100%;
    margin-inline: auto;
  }

  .mp-float-chip--bl { left: 12px; }
  .mp-float-chip--tr { right: 12px; }

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

  .mp-about,
  .mp-systems,
  .mp-specs,
  .mp-cta { grid-template-columns: 1fr; }

  .mp-about-media,
  .mp-systems-media {
    max-width: 560px;
    width: 100%;
    margin-inline: auto;
  }

  .mp-systems-media { position: relative; top: 0; }

  .mp-strengths { grid-template-columns: repeat(3, 1fr); }
  .mp-strength:nth-child(4) { border-left: 0; }
  .mp-strength:nth-child(n+4) { border-top: 1px solid var(--pp-line); }

  .mp-cta { padding: 44px 40px; gap: 32px; }
}

@media (max-width: 900px) {
  .pp [id] { scroll-margin-top: 230px; }
}

@media (max-width: 768px) {
  .pp { padding: 48px 0 72px; }
  .mp-block { margin-top: 72px; }
  .pp-head { margin-bottom: 32px; }

  .mp-gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .mp-shot-cap { font-size: 13.5px; left: 14px; right: 14px; bottom: 12px; }
  .mp-shot--big .mp-shot-cap { font-size: 17px; }
  .mp-shot-cap i { display: none; }

  .mp-lb-prev,
  .mp-lb-next { top: auto; bottom: 20px; transform: none; }
  .mp-lb-prev { left: calc(50% - 60px); }
  .mp-lb-next { right: calc(50% - 60px); }
}

@media (max-width: 640px) {
  .pp-wrap { padding-inline: 16px; }

  .pp-intro { margin-bottom: 36px; }
  .pp-intro p { font-size: 15.5px; margin-bottom: 28px; }

  .pp-tabs { padding: 6px; border-radius: 18px; }
  .pp-tab { gap: 10px; padding: 10px 12px; border-radius: 13px; }
  .pp-tab .pp-icon { width: 38px; height: 38px; font-size: 16px; border-radius: 10px; }
  .pp-tab-text strong { font-size: 15px; }
  .pp-tab-text small { font-size: 11.5px; }

  .mp-hero { padding: 36px 22px; border-radius: 22px; }
  .mp-hero-sub { font-size: 16px; }
  .mp-hero-actions .pp-btn { flex: 1 1 100%; }
  .mp-stats { grid-template-columns: 1fr 1fr 1fr; }
  .mp-stat + .mp-stat { padding-left: 12px; }
  .mp-stat strong { font-size: 19px; }
  .mp-stat span { font-size: 11.5px; display: block; line-height: 1.4; }

  .mp-float-chip { padding: 9px 12px; font-size: 12.5px; gap: 10px; }
  .mp-float-chip .pp-icon { width: 30px; height: 30px; font-size: 13px; }
  .mp-float-chip small { font-size: 11px; }
  .mp-float-chip--tr { display: none; }

  .mp-highlights { grid-template-columns: 1fr; gap: 14px; }
  .mp-highlight { display: flex; gap: 16px; align-items: flex-start; padding: 20px; }
  .mp-highlight .pp-icon { margin-bottom: 0; }

  .mp-vm { grid-template-columns: 1fr; }

  .mp-strengths { grid-template-columns: 1fr 1fr; }
  .mp-strength { padding: 20px 12px; font-size: 13.5px; }
  .mp-strength:nth-child(n) { border-left: 0; border-top: 1px solid var(--pp-line); }
  .mp-strength:nth-child(-n+2) { border-top: 0; }
  .mp-strength:nth-child(even) { border-left: 1px solid var(--pp-line); }
  .mp-strength:last-child { grid-column: span 2; }

  .mp-process { grid-template-columns: 1fr 1fr; gap: 12px; }
  .mp-step { padding: 18px 14px; }
  .mp-step:not(:last-child)::after { display: none; }
  .mp-step .pp-icon { width: 42px; height: 42px; font-size: 17px; margin-bottom: 12px; }
  .mp-step h3 { font-size: 15px; }
  .mp-step p { font-size: 13px; }

  .mp-system { padding: 14px 16px; gap: 14px; }
  .mp-system .pp-icon { width: 40px; height: 40px; font-size: 16px; }

  .mp-card { padding: 24px 20px; border-radius: 22px; }
  .mp-card-title h3 { font-size: 19px; }
  .mp-spec-table th,
  .mp-spec-table td { font-size: 14px; padding: 12px 0; }
  .mp-spec-table th { width: 46%; padding-right: 12px; }

  .mp-why { grid-template-columns: 1fr; gap: 12px; }

  .mp-cta { padding: 36px 22px; border-radius: 22px; }
  .mp-cta-actions .pp-btn { flex: 1 1 100%; }
  .mp-contact { padding: 22px 18px; }

  .mp-lightbox { padding: 16px; }
  .mp-lb-close { top: 12px; right: 12px; }
}

@media (max-width: 420px) {
  .pp-tab-text small { display: none; }
  .pp-tab {
    flex-direction: column;
    gap: 6px;
    padding: 10px 8px;
    text-align: center;
  }
  .pp-tab .pp-icon { width: 34px; height: 34px; font-size: 15px; }
  .mp-shot-cap { font-size: 12.5px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .pp *, .pp *::before, .pp *::after {
    animation: none !important;
    transition: none !important;
  }
}
