/* ============================================================
   plot-monitoring.css
   Page-specific styles for /services/plot-monitoring
   Depends on: pearl.css + service-page.css
   
   Design direction: "Satellite surveillance authority" —
   military-map aesthetic in hero (grid overlay, radar, scan
   line), trust + urgency in risk section, warm NRI human
   connection section, income transformation dark section.
============================================================ */

/* Hero blobs */
.pm-blob--1 {
  background: radial-gradient(circle, rgba(30, 57, 143, 0.3), transparent 70%);
  width: 540px;
  height: 540px;
}

.pm-blob--2 {
  background: radial-gradient(circle, rgba(199, 0, 126, 0.22), transparent 70%);
  bottom: -80px;
  right: -60px;
}
.white-sup{
    color:#fff;
}
/* Map grid overlay in hero */
.pm-map-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    linear-gradient(rgba(30, 57, 143, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 57, 143, 0.12) 1px, transparent 1px);
  background-size: 40px 40px;
}
.pm-whatsapp {
  background: var(--gradient-main);
  position: relative;
  overflow: hidden;
}

.pm-whatsapp::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.pm-whatsapp::after {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}
/* Satellite scan line */
.pm-scan-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  height: 2px;
  background: linear-gradient(90deg,
      transparent,
      rgba(199, 0, 126, 0.6),
      transparent);
  animation: scanDown 4s linear infinite;
  pointer-events: none;
}

@keyframes scanDown {
  0% {
    top: 0%;
    opacity: 0.8;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}

/* Audience chips */
.pm-audience-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.pm-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 20px;
  transition: all 0.3s;
}

.pm-chip i {
  font-size: 0.72rem;
}

.pm-chip--nri {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #86efac;
}

.pm-chip--abs {
  background: rgba(240, 180, 41, 0.15);
  border: 1px solid rgba(240, 180, 41, 0.3);
  color: #f0b429;
}

.pm-chip--inh {
  background: rgba(199, 0, 126, 0.15);
  border: 1px solid rgba(199, 0, 126, 0.3);
  color: #f9a8d4;
}

.pm-chip:hover {
  transform: scale(1.05);
}

/* =============================================
   HERO RIGHT — Radar monitor card
============================================= */
.pm-monitor-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 28px;
}

/* RADAR */
.pm-radar-wrap {
  text-align: center;
  margin-bottom: 24px;
}

/* RADAR — improved version */
.pm-radar-wrap {
  text-align: center;
  margin-bottom: 24px;
}

.pm-radar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(0, 255, 100, 0.06);
  /* slightly stronger bg */
  border: 1px solid rgba(0, 255, 100, 0.25);
  position: relative;
  margin: 0 auto 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 255, 100, 0.08);
}

.pm-radar-rings {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pm-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(0, 255, 100, 0.18);
}

.pm-ring--1 {
  width: 38%;
  height: 38%;
}

.pm-ring--2 {
  width: 64%;
  height: 64%;
}

.pm-ring--3 {
  width: 92%;
  height: 92%;
}

/* Rotating sweep — corrected & more realistic */
.pm-radar-sweep {
  position: absolute;
  inset: 0;
  background:
    conic-gradient(from 0deg at 50% 50%,
      transparent 0deg,
      transparent 200deg,
      rgba(0, 255, 100, 0.45) 260deg,
      rgba(0, 255, 100, 0.18) 300deg,
      transparent 340deg,
      transparent 360deg);
  opacity: 0.9;
  animation:
    radarSpin 3.2s linear infinite,
    sweepFade 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes radarSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes sweepFade {

  0%,
  100% {
    opacity: 0.85;
  }

  50% {
    opacity: 1;
  }
}

/* Blip dots — added subtle pulse/glow */
.pm-radar-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 10px #4ade80, 0 0 20px rgba(74, 222, 128, 0.4);
  animation: blipFade 4.2s ease-in-out infinite;
}

.pm-radar-dot--1 {
  top: 28%;
  left: 62%;
  animation-delay: 0s;
}

.pm-radar-dot--2 {
  top: 58%;
  left: 38%;
  animation-delay: 1.4s;
}

.pm-radar-dot--3 {
  top: 68%;
  left: 68%;
  animation-delay: 2.8s;
}

@keyframes blipFade {

  0%,
  75%,
  100% {
    opacity: 0.35;
    transform: scale(0.9);
    box-shadow: 0 0 8px #4ade80;
  }

  85% {
    opacity: 1;
    transform: scale(1.35);
    box-shadow: 0 0 18px #4ade80, 0 0 30px rgba(74, 222, 128, 0.6);
  }
}

.pm-radar-label {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Rotating sweep */
.pm-radar-sweep {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: 50% 50%;
  background: conic-gradient(from 0deg,
      rgba(0, 255, 100, 0.0) 0deg,
      rgba(0, 255, 100, 0.35) 60deg,
      rgba(0, 255, 100, 0.0) 90deg,
      transparent 90deg);
  border-radius: 50%;
  animation: radarSpin 2.5s linear infinite;
}

@keyframes radarSpin {
  to {
    transform: rotate(360deg);
  }
}

/* Blip dots */
.pm-radar-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: blipFade 3s ease-in-out infinite;
}

.pm-radar-dot--1 {
  top: 30%;
  left: 60%;
  animation-delay: 0s;
}

.pm-radar-dot--2 {
  top: 55%;
  left: 35%;
  animation-delay: 1s;
}

.pm-radar-dot--3 {
  top: 70%;
  left: 70%;
  animation-delay: 2s;
}

@keyframes blipFade {

  0%,
  80% {
    opacity: 1;
    transform: scale(1);
  }

  90% {
    opacity: 0.3;
    transform: scale(2);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.pm-radar-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Monitor stats */
.pm-monitor-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.pm-ms-item {
  text-align: center;
  padding: 12px 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.pm-ms-item--pink {
  background: rgba(199, 0, 126, 0.1);
  border-color: rgba(199, 0, 126, 0.2);
}

.pm-ms-item span {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(90deg, #4ade80, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.pm-ms-item--pink span {
  background: linear-gradient(90deg, #f0b429, #c7007e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pm-ms-item sup {
  font-size: 0.7rem;
  color: #4ade80;
  vertical-align: super;
}

.pm-ms-item p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
  margin-top: 4px;
}

.pm-monitor-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #065f46, #059669);
  color: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

.pm-monitor-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(5, 150, 105, 0.55);
}

/* =============================================
   SECTION 1 — RISK CARDS
============================================= */
.pm-risks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.pm-risk-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(30, 57, 143, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  position: relative;
  padding: 24px 20px 20px;
  transition: all 0.4s;
}

.pm-risk-card:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow-pink);
  border-color: rgba(199, 0, 126, 0.15);
}

/* Coloured top accent */
.pm-risk-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.pm-risk-icon {
  width: 44px;
  height: 44px;
  background: var(--risk-color, #1e398f);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  transition: transform 0.3s;
}

.pm-risk-card:hover .pm-risk-icon {
  transform: scale(1.1) rotate(-6deg);
}

.pm-risk-badge {
  font-size: 0.62rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
  background: var(--risk-color, #1e398f);
  color: #fff;
  opacity: 0.8;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pm-risk-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  margin-bottom: 6px;
}

.pm-risk-card p {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.6;
}

/* Animated fill bar at bottom */
.pm-risk-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  transition: width 1s ease;
}

.pm-risk-card:hover .pm-risk-fill {
  width: 100%;
}

/* Inaction strip */
.pm-inaction-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 36px;
  background: linear-gradient(135deg,
      rgba(239, 68, 68, 0.05),
      rgba(199, 0, 126, 0.05));
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: var(--radius);
  overflow: hidden;
  flex-wrap: wrap;
}

.pm-ia-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 24px 20px;
}

.pm-ia-item span {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 6px;
}

.pm-ia-item p {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.5;
}

.pm-ia-sep {
  width: 1px;
  height: 60px;
  background: rgba(239, 68, 68, 0.15);
}

/* =============================================
   SECTION 2 — PLANS
============================================= */
.pm-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.pm-plan-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px 28px;
  border: 1px solid rgba(30, 57, 143, 0.08);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.4s;
}

.pm-plan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-pink);
}

.pm-plan-popular {
  border-color: rgba(199, 0, 126, 0.3);
  box-shadow: 0 12px 40px rgba(199, 0, 126, 0.15);
  transform: scale(1.03);
}

.pm-plan-popular:hover {
  transform: scale(1.03) translateY(-6px);
}

.pm-plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-main);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.pm-plan-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
}

.pm-plan-tag {
  font-size: 0.78rem;
  color: var(--pink);
  font-weight: 600;
}

.pm-plan-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  padding: 8px 0;
  border-top: 1px dashed rgba(30, 57, 143, 0.12);
}

.pm-plan-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.pm-plan-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: #374151;
  line-height: 1.5;
}

.pm-plan-card li i {
  color: #22c55e;
  font-size: 0.72rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pm-plan-note {
  font-size: 0.72rem;
  color: var(--gray);
  font-style: italic;
  padding-top: 8px;
  border-top: 1px dashed rgba(30, 57, 143, 0.08);
}

.pm-plan-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gradient-main);
  color: #fff;
  padding: 11px 18px;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  margin-top: 4px;
}

.pm-plan-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(199, 0, 126, 0.35);
}

/* Visit includes */
.pm-visit-includes {
  margin-top: 36px;
  padding: 28px;
  background: linear-gradient(135deg,
      rgba(30, 57, 143, 0.04),
      rgba(199, 0, 126, 0.04));
  border: 1px solid rgba(30, 57, 143, 0.1);
  border-radius: var(--radius);
}

.pm-visit-includes h4 {
  font-size: 1rem;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pm-visit-includes h4 i {
  color: var(--pink);
}

.pm-vi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.pm-vi-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 14px;
  border: 1px solid rgba(30, 57, 143, 0.06);
  transition: all 0.3s;
}

.pm-vi-item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.pm-vi-item span {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.pm-vi-item strong {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  margin-bottom: 2px;
}

.pm-vi-item p {
  font-size: 0.74rem;
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
}

/* =============================================
   SECTION 3 — NRI
============================================= */
.pm-nri-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}

.pm-nri-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.pm-nri-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  background: var(--offwhite);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--blue);
  transition: all 0.3s;
}

.pm-nri-point:hover {
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateX(5px);
}

.pm-nri-point span {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.pm-nri-point strong {
  display: block;
  font-size: 0.87rem;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  margin-bottom: 2px;
}

.pm-nri-point p {
  font-size: 0.77rem;
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
}

/* NRI card */
.pm-nri-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(30, 57, 143, 0.1);
  box-shadow: var(--shadow);
  overflow: hidden;
}

/* Globe visual */
.pm-globe-visual {
  padding: 24px 24px 0;
  text-align: center;
  background: linear-gradient(135deg, #0d1a3a, #1e398f);
  padding-bottom: 20px;
}

.pm-globe {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(30, 57, 143, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pm-globe-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

.pm-globe-ring--1 {
  width: 120%;
  height: 120%;
  animation: globeSpin 8s linear infinite;
}

.pm-globe-ring--2 {
  width: 155%;
  height: 155%;
  animation: globeSpin 12s linear infinite reverse;
}

@keyframes globeSpin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.pm-globe-center i {
  font-size: 1.8rem;
  color: #fff;
}

.pm-globe-locations {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.pm-gl {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 4px 12px;
  border-radius: 20px;
}

/* NRI how section */
.pm-nri-how {
  padding: 20px 24px;
}

.pm-nri-how h4 {
  font-size: 0.92rem;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  margin-bottom: 14px;
}

.pm-nri-how-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(30, 57, 143, 0.06);
}

.pm-nri-how-item:last-child {
  border-bottom: none;
}

.pm-nri-how-item span {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.pm-nri-how-item strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  margin-bottom: 1px;
}

.pm-nri-how-item p {
  font-size: 0.74rem;
  color: var(--gray);
  line-height: 1.4;
  margin: 0;
}

.pm-nri-quote {
  margin: 0 24px;
  padding: 14px 16px;
  background: linear-gradient(135deg,
      rgba(30, 57, 143, 0.06),
      rgba(199, 0, 126, 0.06));
  border-radius: 12px;
  border: 1px solid rgba(30, 57, 143, 0.1);
  font-size: 0.8rem;
  font-style: italic;
  color: var(--gray);
  line-height: 1.6;
}

.pm-nri-card .btn {
  margin: 0 24px 24px;
}

/* =============================================
   SECTION 4 — INCOME (dark)
============================================= */
.pm-income-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 36px;
}

.pm-income-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: all 0.3s;
}

.pm-income-card:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-5px);
  border-color: rgba(240, 180, 41, 0.25);
}

.pm-income-card h4 {
  color: #fff;
  font-size: 0.92rem;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  margin-bottom: 6px;
}

.pm-income-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.pm-ic-range {
  font-size: 0.78rem;
  font-weight: 700;
  background: linear-gradient(90deg, #f0b429, #c7007e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Case study strip */
.pm-case-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 24px;
}

.pm-cs-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f87171;
  margin-bottom: 8px;
  background: rgba(239, 68, 68, 0.15);
  padding: 3px 10px;
  border-radius: 10px;
}

.pm-cs-label--after {
  color: #4ade80;
  background: rgba(34, 197, 94, 0.15);
}

.pm-cs-before p,
.pm-cs-after p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  line-height: 1.6;
  margin: 0;
}

.pm-cs-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--pink);
}

.pm-cs-arrow i {
  font-size: 1.4rem;
  animation: arrowBounce 1.5s ease-in-out infinite;
}

.pm-cs-arrow span {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
}

@keyframes arrowBounce {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(6px);
  }
}

/* =============================================
   SECTION 5 — LEGAL
============================================= */
.pm-legal-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}

.pm-legal-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.pm-legal-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(30, 57, 143, 0.07);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s;
}

.pm-legal-step:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow);
  border-color: rgba(199, 0, 126, 0.12);
}

.pm-ls-icon {
  width: 38px;
  height: 38px;
  background: var(--gradient-main);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}

.pm-legal-step strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  margin-bottom: 2px;
}

.pm-legal-step p {
  font-size: 0.76rem;
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
}

/* Legal response card */
.pm-legal-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(30, 57, 143, 0.1);
  box-shadow: var(--shadow);
  padding: 28px;
}

.pm-legal-card h4 {
  font-size: 1rem;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  margin-bottom: 6px;
}

.pm-legal-card>p {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

.pm-lc-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 20px;
}

.pm-lct-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-left: 2px solid rgba(30, 57, 143, 0.1);
  padding-left: 16px;
  margin-left: 35px;
  position: relative;
}

.pm-lct-item::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 18px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gradient-main);
  border: 2px solid #fff;
  box-shadow: 0 0 0 3px rgba(199, 0, 126, 0.15);
}

.pm-lct-item--immediate::before {
  background: linear-gradient(135deg, #dc2626, #ef4444);
}

.pm-lct-item--fast::before {
  background: linear-gradient(135deg, #d97706, #f59e0b);
}

.pm-lct-time {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue);
  background: rgba(30, 57, 143, 0.06);
  border-radius: 8px;
  padding: 4px 8px;
  text-align: center;
  align-self: flex-start;
  white-space: nowrap;
}

.pm-lct-item--immediate .pm-lct-time {
  color: #dc2626;
  background: rgba(239, 68, 68, 0.08);
}

.pm-lct-item--fast .pm-lct-time {
  color: #d97706;
  background: rgba(245, 158, 11, 0.08);
}

.pm-lct-content strong {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
  margin-bottom: 2px;
}

.pm-lct-content p {
  font-size: 0.75rem;
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
}

.pm-lc-stat {
  text-align: center;
  padding: 16px;
  background: var(--gradient-main);
  border-radius: 12px;
}

.pm-lc-stat span {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
}

.pm-lc-stat sup {
  font-size: 1rem;
  vertical-align: super;
}

.pm-lc-stat p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.76rem;
  margin-top: 4px;
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1200px) {
  .pm-risks-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pm-income-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pm-vi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .pm-nri-grid {
    grid-template-columns: 1fr;
  }

  .pm-legal-grid {
    grid-template-columns: 1fr;
  }

  .pm-plans-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .pm-plan-popular {
    transform: none;
  }

  .pm-case-strip {
    grid-template-columns: 1fr;
  }

  .pm-cs-arrow {
    flex-direction: row;
  }

  .pm-cs-arrow i {
    transform: rotate(90deg);
  }
}

@media (max-width: 768px) {
  .pm-risks-grid {
    grid-template-columns: 1fr;
  }

  .pm-income-grid {
    grid-template-columns: 1fr;
  }

  .pm-vi-grid {
    grid-template-columns: 1fr;
  }

  .pm-inaction-strip {
    flex-direction: column;
  }

  .pm-ia-sep {
    width: 100%;
    height: 1px;
  }

  .pm-monitor-stats {
    grid-template-columns: 1fr;
  }
}