/* =========================================================
   Project Management Feature Landing Page - Premium SaaS Style
   Color Palette: #3a3285 (Primary), #fff (White), #f8f9ff (Light BG)
   Font: Manrope (inherited from global theme)
   ========================================================= */

/* ---- CSS Variables ---- */
:root {
  --pm-primary: #3a3285;
  --pm-primary-light: #5a52c0;
  --pm-primary-dark: #2a2465;
  --pm-accent: #e60c80;
  --pm-accent-2: #05b7b7;
  --pm-white: #ffffff;
  --pm-light-bg: #f8f9ff;
  --pm-light-bg2: #f0f2ff;
  --pm-text-dark: #1e2228;
  --pm-text-body: #60697b;
  --pm-border: rgba(58, 50, 133, 0.12);
  --pm-shadow-sm: 0 4px 16px rgba(58, 50, 133, 0.08);
  --pm-shadow-md: 0 8px 32px rgba(58, 50, 133, 0.12);
  --pm-shadow-lg: 0 16px 48px rgba(58, 50, 133, 0.16);
  --pm-radius: 14px;
  --pm-radius-lg: 24px;
  --pm-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --pm-red: #e2626b;
  --pm-green: #45c4a0;
  --pm-yellow: #fab758;
}

/* ---- PAGE-LEVEL OVERFLOW GUARD ---- */
.pm-hero,
.pm-section,
.pm-preview,
.pm-problem-solution,
.pm-features,
.pm-how-section,
.pm-how-it-works,
.pm-benefits,
.pm-faq {
  overflow-x: hidden;
}

/* ---- Scroll Animation Base States ---- */
.pm-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.pm-reveal.pm-revealed {
  opacity: 1;
  transform: translateY(0);
}

.pm-reveal-left {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.pm-reveal-left.pm-revealed {
  opacity: 1;
  transform: translateX(0);
}

.pm-reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.pm-reveal-right.pm-revealed {
  opacity: 1;
  transform: translateX(0);
}

@media (min-width: 992px) {
  .pm-reveal-left {
    transform: translateX(-40px);
  }

  .pm-reveal-right {
    transform: translateX(40px);
  }
}

/* Delay Utilities */
.pm-delay-1 {
  transition-delay: 0.1s;
}

.pm-delay-2 {
  transition-delay: 0.2s;
}

.pm-delay-3 {
  transition-delay: 0.3s;
}

.pm-delay-4 {
  transition-delay: 0.4s;
}

.pm-delay-5 {
  transition-delay: 0.5s;
}

/* ============================================================
   SECTION 1 — HERO
   ============================================================ */
.pm-hero {
  background: linear-gradient(135deg, #2a2465 0%, #3a3285 50%, #5330a8 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 35px;
  min-height: 92vh;
  display: flex;
  align-items: center;
}

.pm-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 12, 128, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.pm-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.pm-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.pm-hero .hero-badge span.dot {
  width: 8px;
  height: 8px;
  background: var(--pm-accent-2);
  border-radius: 50%;
  animation: pm-pulse 1.6s infinite;
}

@keyframes pm-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(5, 183, 183, 0.6);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(5, 183, 183, 0);
  }
}

.pm-hero .hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}

.pm-hero .hero-title .highlight {
  background: linear-gradient(90deg, #05b7b7, #e60c80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pm-hero .hero-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 500px;
}

.pm-hero .btn-hero-primary {
  background: #fff;
  color: var(--pm-primary);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--pm-transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.pm-hero .btn-hero-primary:hover {
  background: var(--pm-accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(58, 50, 133, 0.3);
}

.pm-hero .hero-mockup-wrapper {
  position: relative;
  z-index: 1;
}

.pm-hero .hero-mockup {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--pm-radius-lg);
  backdrop-filter: blur(12px);
  padding: 16px;
  box-shadow: var(--pm-shadow-lg);
}

.pm-hero .mockup-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
}

.pm-hero .mockup-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-body {
  background: linear-gradient(155deg, #1a2040 0%, #0e1326 100%);
  border-radius: 10px;
  padding: 16px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-body img {
  height: auto;
  width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: contain;
}

/* ============================================================
   SECTION: Common Heading
   ============================================================ */
.pm-section {
  padding: 35px 0;
}

.pm-section-alt {
  background: var(--pm-light-bg);
  position: relative;
}

.pm-section-alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(58, 50, 133, 0.03) 2px, transparent 2px);
  background-size: 32px 32px;
  pointer-events: none;
}

.pm-section-dark {
  background: #1a2040 !important;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.pm-section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 2px, transparent 2px);
  background-size: 32px 32px;
  pointer-events: none;
}

.pm-section-label {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(58, 50, 133, 0.05);
  color: var(--pm-primary);
  border: 1px solid rgba(58, 50, 133, 0.1);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.pm-section-dark .pm-section-label {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.pm-section-title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--pm-text-dark);
  line-height: 1.25;
  margin-bottom: 20px;
}

.pm-section-dark .pm-section-title {
  color: #fff;
}

.pm-section-subtitle {
  color: var(--pm-text-body);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 50px;
}

/* ============================================================
   SECTION 2 — FEATURES (CARDS)
   ============================================================ */
.pm-features .feature-card {
  background: #fff;
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius-lg);
  padding: 40px;
  height: 100%;
  transition: var(--pm-transition);
  box-shadow: var(--pm-shadow-sm);
  position: relative;
}

.pm-features .feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--pm-shadow-lg);
  border-color: var(--pm-primary);
}

.pm-features .feature-icon-wrap {
  width: 54px;
  height: 54px;
  background: rgba(58, 50, 133, 0.1);
  color: var(--pm-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 25px;
  transition: var(--pm-transition);
}

.pm-features .feature-card:hover .feature-icon-wrap {
  background: var(--pm-primary);
  color: #fff;
}

.pm-features .feature-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--pm-text-dark);
  margin-bottom: 15px;
}

.pm-features .feature-desc {
  font-size: 0.88rem;
  color: var(--pm-text-body);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============================================================
   SECTION: DYNAMIC PIPELINES
   ============================================================ */
.pm-pipeline-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 0;
  scrollbar-width: none;
}

.pm-pipeline-container::-webkit-scrollbar {
  display: none;
}

.pm-pipeline-stage {
  min-width: 280px;
  background: #f1f3f9;
  border-radius: 14px;
  padding: 16px;
  height: fit-content;
}

.pm-pipeline-stage-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.pm-pipeline-stage-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--pm-text-dark);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.pm-task-card {
  background: #fff;
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.pm-task-id {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--pm-primary);
  margin-bottom: 6px;
  display: block;
}

.pm-task-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--pm-text-dark);
  margin-bottom: 12px;
}

.pm-task-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pm-task-priority {
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
}

.pm-task-priority.high {
  background: #fee2e2;
  color: #ef4444;
}

.pm-task-priority.med {
  background: #fef3c7;
  color: #d97706;
}

.pm-task-priority.low {
  background: #dcfce7;
  color: #22c55e;
}

.pm-task-assignees {
  display: flex;
  margin-left: 8px;
}

.pm-task-assignees img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
}

/* ============================================================
   SECTION: BENEFITS
   ============================================================ */
.pm-benefits .benefit-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.pm-benefits .benefit-icon {
  width: 44px;
  height: 44px;
  background: var(--pm-primary);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.pm-benefits .benefit-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--pm-text-dark);
}

.pm-benefits .benefit-desc {
  font-size: 0.9rem;
  color: var(--pm-text-body);
  line-height: 1.5;
}

/* ============================================================
   SECTION: FAQ (ACCORDION)
   ============================================================ */
.pm-faq .accordion-item {
  border: 1px solid var(--pm-border);
  border-radius: 12px !important;
  margin-bottom: 15px;
  overflow: hidden;
  background: #fff;
}

.pm-faq .accordion-button {
  padding: 20px 25px;
  font-weight: 700;
  color: var(--pm-text-dark);
  font-size: 1rem;
  background: #fff;
  box-shadow: none;
}

.pm-faq .accordion-button:not(.collapsed) {
  color: var(--pm-primary);
  background: var(--pm-light-bg2);
}

.pm-faq .accordion-body {
  padding: 0 25px 25px;
  color: var(--pm-text-body);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================================
   SECTION 5 — PRODUCT PREVIEW
   ============================================================ */
.pm-preview {
  background: #3a3285;
  position: relative;
  overflow: hidden;
  /* padding: 100px 0; */
}

.pm-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: 32px 32px;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.pm-preview .preview-screen-wrapper {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--pm-radius-lg);
  padding: 12px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  transition: var(--pm-transition);
}

.pm-preview .preview-screen {
  border-radius: 10px;
  overflow: hidden;
  background: #1a1f3a;
  min-height: 280px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pm-preview .preview-screen .ps-header {
  background: #0f1220;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pm-preview .preview-screen .ps-header .ps-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.pm-preview .preview-sidebar {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 12px;
  height: 100%;
}

.pm-preview .preview-sidebar .ps-metric {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 25px;
  transition: var(--pm-transition);
}

.pm-preview .preview-sidebar .ps-metric-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}

.pm-preview .preview-sidebar .ps-metric-lbl {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  display: block;
  margin-bottom: 10px;
}

.pm-preview .preview-sidebar .ps-progress {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  height: 6px;
  margin-top: 0;
  overflow: hidden;
}

.pm-preview .preview-sidebar .ps-progress .ps-progress-fill {
  height: 100%;
  background: var(--pm-accent-2);
  border-radius: 10px;
  animation: pm-progress-fill 2s ease-out forwards;
}

@keyframes pm-progress-fill {
  from {
    width: 0;
  }
}

/* Hero Trust & Review */
.hero-trust-area {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.hero-avatars {
  display: flex;
}

.hero-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--pm-primary);
  margin-left: -12px;
}

.hero-avatars img:first-child {
  margin-left: 0;
}

.trust-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.trust-text strong {
  color: #fff;
}

/* ============================================================
   SECTION 4 — HOW IT WORKS (Simple Setup)
   ============================================================ */
.pm-how-section {
  background: #fff;
}

.pm-step-card {
  background: #fff;
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius-lg);
  padding: 35px 25px 0px;
  text-align: center;
  position: relative;
  height: 100%;
  box-shadow: var(--pm-shadow-sm);
  transition: var(--pm-transition);
  z-index: 1;
  margin-top: 20px;
}

.pm-step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--pm-shadow-md);
  border-color: rgba(58, 50, 133, 0.22);
}

.pm-step-number {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--pm-primary), #5a52c0);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(58, 50, 133, 0.35);
  z-index: 2;
}

.pm-step-icon {
  font-size: 2.5rem;
  color: var(--pm-primary);
  display: block;
  margin-bottom: 20px;
  transition: var(--pm-transition);
}

.pm-step-card:hover .pm-step-icon {
  transform: scale(1.1);
}

.pm-step-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--pm-text-dark);
  margin-bottom: 12px;
}

.pm-step-desc {
  font-size: 0.85rem;
  color: var(--pm-text-body);
  line-height: 1.7;
  margin-bottom: 0;
}

/* App Download Buttons */
.pm-app-btn {
  display: inline-flex;
  align-items: center;
  transition: var(--pm-transition);
  /* border-radius: 12px; */
  overflow: hidden;
  height: 48px;
  /* Standardize height */
  text-decoration: none !important;
}

.pm-app-btn svg {
  height: 100%;
  width: auto;
  display: block;
}

.pm-app-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Responsiveness for app buttons */
@media (max-width: 575px) {
  .pm-app-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Problem/Solution Side-by-Side */
.problem-list .card {
  margin-bottom: 12px;
  border-radius: 12px;
  transition: var(--pm-transition);
}

.problem-list .card:hover {
  transform: translateX(8px);
}

.problem-list .icon-wrap {
  width: 42px;
  height: 42px;
  background: rgba(226, 98, 107, 0.08);
  color: var(--pm-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(226, 98, 107, 0.2);
}

.solution-card {
  background: var(--pm-primary);
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--pm-shadow-lg);
}

.solution-card .solution-list .icon-wrap {
  width: 26px;
  height: 26px;
  background: var(--pm-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(69, 196, 160, 0.3);
}

/* Product Preview & Metrics */
.pm-section-preview {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
  color: #fff;
  padding: 100px 0;
}

.preview-screen-wrapper {
  position: relative;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-screen {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.ps-header {
  padding: 12px 20px;
  background: #232a4e;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ps-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.preview-sidebar {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
}

.ps-metric {
  margin-bottom: 25px;
}

.ps-metric-val {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.ps-metric-lbl {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
}

.ps-progress {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.ps-progress-fill {
  height: 100%;
  background: var(--pm-accent-2);
  border-radius: 10px;
}

/* Workflow Steps */
.step-card {
  text-align: center;
  padding: 40px 30px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--pm-shadow-sm);
  position: relative;
  height: 100%;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--pm-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin: 0 auto 20px;
}

.step-icon {
  font-size: 2.5rem;
  color: var(--pm-primary);
  margin-bottom: 20px;
  display: block;
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pm-primary);
  font-size: 2rem;
  opacity: 0.3;
}

/* Benefits Visual Stats */
.benefits-visual {
  background: #f8f9ff;
  padding: 40px;
  border-radius: 30px;
  border: 1px solid var(--pm-border);
}

.stat-card {
  background: #fff;
  border: 1px solid var(--pm-border);
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: var(--pm-shadow-sm);
  text-align: center;
}

.stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.stat-lbl {
  font-size: 0.72rem;
  color: var(--pm-text-body);
  margin-top: 6px;
}

.stat-bar {
  width: 40px;
  height: 3px;
  border-radius: 2px;
  margin: 10px auto 0;
}

@media (max-width: 991px) {
  .step-arrow {
    display: none;
  }
}

/* ============================================================
   Youtube REELS
   ============================================================ */
.pm-youtube-reviews {
  background-color: #f8f9fa;
  overflow: hidden;
}

.swiper-pagination-bullet-active {
  background: #2a2465 !important;
}

.reel-swiper {
  padding: 40px 0 60px;
}

.reel-card {
  width: 100%;
  max-width: 260px;
  height: 460px;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  cursor: pointer;
  margin: 0 auto;
}

.reel-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(58, 50, 133, 0.15);
}

.reel-video-container {
  width: 100%;
  height: 100%;
  position: relative;
  background: #000;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.pm-testimonials .testimonial-card {
  background: #fff;
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius);
  padding: 32px;
  height: 100%;
  transition: var(--pm-transition);
  position: relative;
}

.pm-testimonials .testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 22px;
  font-size: 4rem;
  line-height: 1;
  color: rgba(58, 50, 133, 0.08);
  font-family: Georgia, serif;
}

.pm-testimonials .testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--pm-shadow-md);
  border-color: rgba(58, 50, 133, 0.2);
}

.pm-testimonials .t-quote {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--pm-text-body);
  margin-bottom: 24px;
  font-style: italic;
}

.pm-testimonials .t-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pm-testimonials .t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.pm-testimonials .t-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--pm-text-dark);
  margin-bottom: 2px;
}

.pm-testimonials .t-role {
  font-size: 0.75rem;
  color: var(--pm-text-body);
}

.pm-testimonials .trust-bar {
  border-top: 1px solid var(--pm-border);
  padding-top: 56px;
  margin-top: 56px;
  text-align: center;
}

.pm-testimonials .trust-bar .trust-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pm-text-body);
  margin-bottom: 24px;
}

.pm-testimonials .trust-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.pm-testimonials .trust-badge {
  background: #fff;
  border: 1px solid var(--pm-border);
  border-radius: 10px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--pm-text-dark);
  box-shadow: var(--pm-shadow-sm);
  transition: var(--pm-transition);
}

.pm-testimonials .trust-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--pm-shadow-md);
}

.pm-testimonials .trust-badge i {
  font-size: 1.2rem;
  color: var(--pm-primary);
}

/* ============================================================
   FAQ
   ============================================================ */
.pm-faq .faq-item {
  background: #fff;
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--pm-shadow-sm);
  transition: var(--pm-transition);
}

.pm-faq .faq-item:hover {
  border-color: rgba(58, 50, 133, 0.22);
  box-shadow: var(--pm-shadow-md);
}

.pm-faq .faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 24px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--pm-text-dark);
  transition: var(--pm-transition);
}

.pm-faq .faq-btn:hover {
  color: var(--pm-primary);
}

.pm-faq .faq-btn .faq-chevron {
  width: 28px;
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pm-light-bg2);
  color: var(--pm-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: var(--pm-transition);
}

.pm-faq .faq-btn[aria-expanded="true"] .faq-chevron {
  background: var(--pm-primary);
  color: #fff;
  transform: rotate(180deg);
}

.pm-faq .faq-btn[aria-expanded="true"] {
  color: var(--pm-primary);
}

.pm-faq .faq-body {
  padding: 0 24px 22px;
  font-size: 0.9rem;
  color: var(--pm-text-body);
  line-height: 1.75;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.pm-cta-banner {
  background: linear-gradient(135deg, #2a2465 0%, #3a3285 50%, #5330a8 100%);
  position: relative;
  overflow: hidden;
}

.pm-cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5, 183, 183, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.pm-cta-banner .cta-title {
  font-size: clamp(2rem, 4vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.pm-cta-banner .cta-desc {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* Hero CTA Buttons */
.pm-btn-primary {
  background: #fff;
  color: var(--pm-primary);
  border: none;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.87rem;
  transition: var(--pm-transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  text-decoration: none;
}
.pm-btn-primary:hover {
  background: var(--pm-accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(230, 12, 128, 0.32);
}

.btn-hero-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--pm-transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
  color: #fff;
}

/* Floating Review for Hero */
.hero-floating-review {
  position: absolute;
  bottom: 20px;
  left: -40px;
  background: #fff;
  padding: 16px 24px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  z-index: 10;
  max-width: 260px;
  border: 1px solid rgba(58, 50, 133, 0.1);
}

/* ============================================================
   SECTION 2 — CORE CAPABILITIES (Everything You Need)
   ============================================================ */
.pm-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(58, 50, 133, 0.05);
  color: var(--pm-primary);
  border: 1px solid var(--pm-border);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.pm-badge .pm-dot {
  width: 7px; height: 7px;
  background: var(--pm-teal);
  border-radius: 50%;
  display: inline-block;
  animation: pm-pulse 1.6s infinite;
}
@keyframes pm-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(5, 183, 183, 0.6); }
  50%       { box-shadow: 0 0 0 6px rgba(5, 183, 183, 0); }
}

.pm-feature-card {
  background: #fff;
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius);
  padding: 32px 26px;
  height: 100%;
  box-shadow: 0 4px 16px rgba(58, 50, 133, 0.05);
  transition: var(--pm-transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.pm-feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; top: 0;
  background: linear-gradient(135deg, rgba(58,50,133,0.04) 0%, transparent 60%);
  border-radius: var(--pm-radius);
  pointer-events: none;
  opacity: 0;
  transition: var(--pm-transition);
}
.pm-feature-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--pm-shadow-lg);
  border-color: rgba(58,50,133,0.25);
}
.pm-feature-card:hover::after { opacity: 1; }

.pm-feature-icon {
  width: 62px; height: 62px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(58,50,133,0.1), rgba(5,183,183,0.08));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--pm-primary);
  margin-bottom: 22px;
  transition: var(--pm-transition);
}
.pm-feature-card:hover .pm-feature-icon {
  background: linear-gradient(135deg, var(--pm-primary), #5a52c0);
  color: #fff;
  transform: rotate(-5deg) scale(1.1);
}
.pm-feature-title {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--pm-text-dark);
  margin-bottom: 10px;
}
.pm-feature-desc {
  font-size: 0.82rem;
  color: var(--pm-text-body);
  line-height: 1.72;
  margin-bottom: 0;
}

/* ============================================================
   SECTION 3 — SIMPLE SETUP (Process Flow)
   ============================================================ */
.pm-how-section {
  background: var(--pm-light-bg);
}
.pm-step-card {
  background: #fff;
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius);
  padding: 36px 28px 28px;
  text-align: center;
  position: relative;
  height: 100%;
  box-shadow: 0 4px 16px rgba(58, 50, 133, 0.05);
  transition: var(--pm-transition);
}
.pm-step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--pm-shadow-md);
  border-color: rgba(58, 50, 133, 0.2);
}
.pm-step-number {
  position: absolute;
  top: -18px; left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--pm-primary), #5a52c0);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(58, 50, 133, 0.35);
}
.pm-step-icon {
  font-size: 2.2rem;
  color: var(--pm-primary);
  margin-bottom: 16px;
  display: block;
}
.pm-step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--pm-text-dark);
  margin-bottom: 10px;
}
.pm-step-desc {
  font-size: 0.82rem;
  color: var(--pm-text-body);
  line-height: 1.7;
  margin-bottom: 0;
}
/* Arrow between steps */
.pm-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
  color: rgba(58, 50, 133, 0.3);
  font-size: 1.3rem;
}/* ============================================================
   SECTION 5 — BENEFITS (Business Value)
   ============================================================ */
.pm-benefits .pm-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius);
  box-shadow: 0 4px 16px rgba(58, 50, 133, 0.05);
  margin-bottom: 16px;
  transition: var(--pm-transition);
}
.pm-benefits .pm-benefit-item:hover {
  transform: translateX(4px);
  box-shadow: var(--pm-shadow-md);
  border-color: rgba(58, 50, 133, 0.25);
}
.pm-benefits .pm-benefit-icon {
  width: 50px; min-width: 50px; height: 50px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  background: linear-gradient(135deg, rgba(58, 50, 133, 0.1), rgba(5, 183, 183, 0.08));
  color: var(--pm-primary);
}
.pm-benefits .pm-benefit-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--pm-text-dark);
  margin-bottom: 6px;
}
.pm-benefits .pm-benefit-desc {
  font-size: 0.82rem;
  color: var(--pm-text-body);
  line-height: 1.65;
  margin-bottom: 0;
}
.pm-benefits-visual {
  background: linear-gradient(135deg, var(--pm-light-bg) 0%, var(--pm-light-bg2) 100%);
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius-lg);
  padding: 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.pm-stat-box {
  background: #fff;
  border: 1px solid var(--pm-border);
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 4px 16px rgba(58, 50, 133, 0.05);
  text-align: center;
  transition: var(--pm-transition);
}
.pm-stat-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--pm-shadow-md);
}
.pm-stat-val {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}
.pm-stat-lbl {
  font-size: 0.72rem;
  color: var(--pm-text-body);
  margin-top: 6px;
}

/* ============================================================
   SECTION 7 — TESTIMONIALS (Customer Stories)
   ============================================================ */
.pm-testimonials {
  background: var(--pm-light-bg);
}
.pm-testimonial-card {
  background: #fff;
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius);
  padding: 32px 28px;
  box-shadow: 0 4px 16px rgba(58, 50, 133, 0.05);
  transition: var(--pm-transition);
  position: relative;
  height: 100%;
}
.pm-testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px; right: 22px;
  font-size: 4rem;
  line-height: 1;
  color: rgba(58, 50, 133, 0.08);
  font-family: Georgia, serif;
}
.pm-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--pm-shadow-md);
  border-color: rgba(58, 50, 133, 0.2);
}

.pm-testimonial-card .t-quote {
  font-size: 0.84rem;
  line-height: 1.75;
  color: var(--pm-text-body);
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.pm-testimonial-card .t-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pm-testimonial-card .t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.pm-testimonial-card .t-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--pm-text-dark);
  margin-bottom: 2px;
}
.pm-testimonial-card .t-role {
  font-size: 0.72rem;
  color: var(--pm-text-body);
}

/* Trust Bar Styling */
.trust-bar {
  border-top: 1px solid var(--pm-border);
  padding-top: 50px;
  text-align: center;
}
.trust-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--pm-text-body);
  margin-bottom: 24px;
  opacity: 0.8;
}
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-badge {
  background: #fff;
  border: 1px solid var(--pm-border);
  border-radius: 10px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--pm-text-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: var(--pm-transition);
}
.trust-badge i {
  color: var(--pm-primary);
  font-size: 1.1rem;
}
.trust-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--pm-shadow-sm);
  border-color: var(--pm-primary);
}


/* ============================================================
   SECTION 8 — FAQ (Common Questions)
   ============================================================ */
.pm-faq .faq-item {
  background: #fff;
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(58, 50, 133, 0.05);
  transition: var(--pm-transition);
}
.pm-faq .faq-item:hover {
  border-color: rgba(58, 50, 133, 0.22);
  box-shadow: var(--pm-shadow-md);
}
.pm-faq .faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 24px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--pm-text-dark);
  transition: var(--pm-transition);
}
.pm-faq .faq-btn:hover {
  color: var(--pm-primary);
}
.pm-faq .faq-chevron {
  width: 28px; min-width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(58, 50, 133, 0.05);
  color: var(--pm-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  transition: var(--pm-transition);
}
.pm-faq .faq-btn[aria-expanded="true"] .faq-chevron {
  background: var(--pm-primary);
  color: #fff;
  transform: rotate(180deg);
}
.pm-faq .faq-btn[aria-expanded="true"] {
  color: var(--pm-primary);
}
.pm-faq .faq-body {
  padding: 0 24px 22px;
  font-size: 0.84rem;
  color: var(--pm-text-body);
  line-height: 1.75;
}

.hero-floating-review img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.review-stars {
  color: #fab758;
  font-size: 0.75rem;
  margin-bottom: 4px;
}

.review-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--pm-text-dark);
  margin-bottom: 0;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .hero-floating-review {
    display: none;
  }
}
/* Google Rating Component */
.pm-google-rating {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 18px;
  border-radius: 14px;
  backdrop-filter: blur(10px);
}

.pm-google-rating:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.pm-rating-icon {
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.pm-rating-icon svg {
  width: 100%;
  height: 100%;
}

.pm-rating-content {
  display: flex;
  flex-direction: column;
}

.pm-rating-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2px;
  line-height: 1;
}

.pm-rating-stars-wrap {
  display: flex;
  /* align-items: center; */
  gap: 8px;
  margin-bottom: 2px;
}

.pm-rating-num {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.pm-stars-row {
  color: #fab758;
  font-size: 0.8rem;
  display: flex;
  gap: 1px;
}

.pm-rating-count {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1;
}

@keyframes pm-tm-scroll-ltr {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* ---- Marquee outer wrapper with left/right fade edges ---- */
.pm-tm-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 7%,
    #000 93%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 7%,
    #000 93%,
    transparent 100%
  );
}

/* ---- The animated track ---- */
.pm-tm-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
}

/* Single row — right to left (clockwise) */
.pm-tm-scroll-ltr {
  animation: pm-tm-scroll-ltr 38s linear infinite;
}

/* ---- Pause on hover ---- */
.pm-tm-wrap:hover .pm-tm-track {
  animation-play-state: paused;
}
.pm-tm-card {
  flex-shrink: 0;
  width: 340px;
  /* perfectly fit approx 30 words / 200 characters */
  min-height: 326px;
  background: var(--pm-white);
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius-lg);
  padding: 28px 26px 11px;
  box-shadow: var(--pm-shadow-sm);
  transition: var(--pm-transition);
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  cursor: default;
}

/* Bottom gradient bar (primary) — revealed on hover */
.pm-tm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pm-primary) 0%, var(--pm-primary-light) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: var(--pm-radius-lg) var(--pm-radius-lg) 0 0;
}

/* Hover state */
.pm-tm-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--pm-shadow-lg);
  border-color: rgba(58, 50, 133, 0.2);
}

.pm-tm-card:hover::before {
  opacity: 1;
}
.pm-tm-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  /* margin-bottom: 12px; */
}

.pm-tm-quote {
  font-size: 2.8rem;
  line-height: 0.5;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 900;
  color: var(--pm-primary);
  opacity: 0.15;
  margin-top: -8px;
  user-select: none;
  pointer-events: none;
}

/* ---- Review text ---- */
.pm-tm-text {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--pm-text-body);
  font-style: italic;
  flex: 1;
  margin: 0 0 0 0;
  /* Clamp at 5 lines for approx 200 characters */
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
}

/* ---- Star Rating ---- */
.pm-tm-stars {
  color: #fab758;
  font-size: 0.8rem;
  margin-bottom: 12px;
  display: flex;
  gap: 3px;
}
/* ---- Author row ---- */
.pm-tm-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 7px;
  border-top: 1px solid var(--pm-border);
  margin-top: auto;
}

/* ---- Avatar ---- */
.pm-tm-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--pm-border);
  box-shadow: 0 2px 8px rgba(58, 50, 133, 0.1);
  flex-shrink: 0;
}

.pm-tm-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- Name & designation ---- */
.pm-tm-meta {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pm-tm-name {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--pm-text-dark);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pm-tm-role {
  font-size: 0.72rem;
  color: var(--pm-text-body);
  margin-top: 2px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 991px) {
  .pm-tm-card {
    width: 300px;
    min-height: 320px; /* Consistent height across breakpoints */
    padding: 24px 22px 20px;
  }

  .pm-tm-scroll-ltr { animation-duration: 32s; }
}

@media (max-width: 575px) {
  .pm-tm-section {
    padding: 50px 0 40px;
  }

  .pm-tm-card {
    width: 260px;
    min-height: 320px; /* Standardizing for mobile as well */
    padding: 20px 18px 22px;
  }

  .pm-tm-text {
    font-size: 0.82rem;
    -webkit-line-clamp: 4;
  }

  .pm-tm-track {
    gap: 16px;
  }

  .pm-tm-scroll-ltr { animation-duration: 25s; }
}
 
@media (max-width: 375px) {
  .pm-testimonials .trust-bar{
    padding-top: 25px;
    margin-top: 25px;
  }
}