.pdv-mei-page h2 {
  color: var(--text-strong);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}
:root {
  --deep-night: #020515;
  --midnight: #060917;
  --violet: #6c63ff;
  --teal: #2ec4b6;
  --aqua: #7df9ff;
  --sand: #f4f0ea;
  --text: #ffffff;
  --muted: rgba(233, 238, 255, 0.82);
  --text-strong: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.94);
  --eyebrow: #7efce7;
  --panel-dark: #030711;
  --panel-mid: #070e22;
  --panel-light: #101b3c;
  --strip-sheen: rgba(255, 255, 255, 0.08);
  --card: var(--panel-mid);
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 40px 90px rgba(3, 5, 15, 0.55);
  --font-title: "Space Grotesk", "Sora", system-ui;
  --font-body: "Sora", "Space Grotesk", system-ui;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background: var(--deep-night);
  color: var(--text);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-strong);
}

img {
  max-width: 100%;
  display: block;
}

.pdv-mei-page {
  background: radial-gradient(circle at 18% 18%, rgba(46, 196, 182, 0.3), transparent 50%),
    radial-gradient(circle at 82% 0%, rgba(108, 99, 255, 0.32), transparent 40%),
    linear-gradient(180deg, #030515 0%, #05091a 45%, #071033 100%);
  min-height: 100vh;
}

.pm-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.75rem;
}

.pm-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(2, 4, 12, 0.9);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.pm-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.pm-brand-logo {
  width: 46px;
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.35));
}

.pm-nav {
  display: flex;
  gap: 1.5rem;
}

.pm-nav a {
  color: var(--text-soft);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.pm-nav a:hover {
  color: var(--text-strong);
}

.pm-actions {
  display: flex;
  gap: 0.75rem;
}

.pm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.85rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease;
  font-family: var(--font-body);
}

.pm-btn-primary {
  background: linear-gradient(130deg, var(--violet), #9a7bff);
  box-shadow: var(--shadow);
}

.pm-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 40px 80px rgba(108, 99, 255, 0.35);
}

.pm-btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--text);
}

.pm-btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.pm-btn-ghost {
  border-color: rgba(46, 196, 182, 0.6);
  color: var(--teal);
}

.pm-btn-ghost:hover {
  background: rgba(46, 196, 182, 0.08);
}

.pm-hero {
  padding: 6rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-copy {
  text-align: center;
}

.hero-copy h1 {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--text-strong);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.hero-badge {
  display: inline-flex;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 1rem;
}

.hero-desc {
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: center;
}

.hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding-left: 0;
  color: var(--text);
  justify-content: center;
  text-align: center;
}

.hero-points li::before {
  content: "✔";
  position: static;
  color: var(--teal);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-note {
  margin-top: 1rem;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.section-desc,
.benefit-card p,
.problem-grid p,
.feature-grid p,
.flow-steps span,
.pricing-card:not(.featured) li,
.faq-grid p {
  color: var(--text);
}

.hero-media {
  position: relative;
  order: -1;
}

.hero-screen {
  background: linear-gradient(145deg, rgba(108, 99, 255, 0.4), rgba(46, 196, 182, 0.4));
  padding: 2.5rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 40px 100px rgba(3, 5, 15, 0.7);
}

.hero-screen img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
}

.hero-strip {
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(5, 9, 26, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 1.5rem 0;
}

.strip-label {
  font-size: 0.8rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.strip-grid strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--text-strong);
}

section {
  padding: 5rem 0;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.5rem;
  color: var(--text-strong);
}

.section-head h2 {
  color: var(--text-strong);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.section-eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--eyebrow);
  margin-bottom: 0.75rem;
}

.section-desc {
  color: var(--text);
  line-height: 1.6;
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.45);
}

.pm-benefits {
  background: linear-gradient(180deg, var(--panel-dark), #040714);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.benefit-card {
  background: #0b1738;
  border-radius: 1.25rem;
  padding: 1.75rem;
  border: 1px solid rgba(126, 252, 231, 0.28);
  box-shadow: 0 35px 70px rgba(2, 4, 12, 0.75);
}

.benefit-card h3 {
  margin-top: 0;
  color: var(--text-strong);
}

.benefit-card p {
  color: var(--text);
  line-height: 1.5;
}

.benefit-card span {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--aqua);
}

.pm-problems {
  background: linear-gradient(180deg, var(--panel-dark), #030612);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.problem-grid article {
  padding: 1.65rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(126, 252, 231, 0.28);
  background: #050b19;
  box-shadow: 0 38px 80px rgba(2, 4, 12, 0.78);
}

.problem-grid h4 {
  margin: 0 0 0.65rem;
  color: var(--text-strong);
}

.problem-grid p {
  margin: 0;
  color: var(--text);
  line-height: 1.5;
}

.pm-features {
  background: linear-gradient(120deg, #0a0f28, #050716);
}

.features-hero h2 {
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.feature-grid article {
  background: #0b1635;
  border-radius: 1.2rem;
  padding: 1.5rem;
  border: 1px solid rgba(126, 252, 231, 0.26);
  box-shadow: 0 35px 75px rgba(2, 4, 12, 0.72);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(108, 99, 255, 0.35), rgba(46, 196, 182, 0.35));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.feature-grid h3 {
  margin: 0 0 0.5rem;
}

.feature-grid p {
  margin: 0;
  color: var(--text);
  line-height: 1.5;
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.45);
}

.pm-flow {
  background: linear-gradient(180deg, #050817, #02040c);
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.flow-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.5rem;
}

.flow-steps li {
  border-left: 3px solid var(--teal);
  padding-left: 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}

.flow-steps strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text-strong);
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.55);
}

.flow-steps span {
  color: var(--text);
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.45);
}

.pm-pricing {
  background: linear-gradient(145deg, #050817, #03040b 95%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background: #0b1635;
  border-radius: 1.75rem;
  padding: 2rem;
  border: 1px solid rgba(126, 252, 231, 0.28);
  box-shadow: 0 40px 90px rgba(2, 4, 12, 0.75);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--text);
}

.pricing-card.featured {
  background: linear-gradient(160deg, #9f90ff, #4be1c9);
  color: #04121d;
}

.pricing-card.featured p,
.pricing-card.featured ul {
  color: #04121d;
}

.pricing-card.featured .pm-btn-outline {
  border-color: #04121d;
  color: #04121d;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  color: var(--text);
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.45);
}

.pricing-card li::before {
  content: "-";
  margin-right: 0.5rem;
  color: var(--teal);
}

.pricing-pill {
  display: inline-flex;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-price {
  font-size: 2.5rem;
  font-family: var(--font-title);
  margin: 0;
  color: var(--text-strong);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.55);
}

.pm-faq {
  background: linear-gradient(180deg, #040713, #02040a);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
}

.faq-grid details {
  background: #091433;
  border-radius: 1rem;
  border: 1px solid rgba(126, 252, 231, 0.3);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 38px 85px rgba(2, 4, 12, 0.78);
}

.faq-grid summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text-strong);
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.55);
}

.faq-grid p {
  margin-top: 0.75rem;
  color: var(--text);
  line-height: 1.6;
  text-shadow: 0 6px 16px rgba(0, 0, 0, 0.45);
}

.pm-final {
  padding-bottom: 6rem;
}

.final-card {
  background: linear-gradient(120deg, rgba(108, 99, 255, 0.9), rgba(46, 196, 182, 0.9));
  border-radius: 2rem;
  padding: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
  color: #020813;
}

.final-card h2 {
  color: #020813;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.final-card p {
  color: rgba(4, 8, 20, 0.95);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.final-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.final-actions .pm-btn {
  width: 100%;
}

@media (max-width: 960px) {
  .pm-nav {
    display: none;
  }

  .hero-card {
    position: relative;
    top: auto;
    right: auto;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 640px) {
  .pm-actions {
    display: none;
  }

  .pm-container {
    padding: 0 1.25rem;
  }

  section {
    padding: 4rem 0;
  }

  .hero-cta {
    flex-direction: column;
  }
}
