
.dpmRoot {
  /* ---- design tokens (scoped, not :root) ---- */
  --dpm-black: #04060c;
  --dpm-ink: #0a0f1f;
  --dpm-navy: #0b1638;
  --dpm-navy-2: #101d47;
  --dpm-blue: #1d4ed8;
  --dpm-blue-bright: #4c8dff;
  --dpm-blue-pale: #eaf1ff;
  --dpm-blue-mist: #dde8fc;
  --dpm-white: #ffffff;
  --dpm-line: rgba(255,255,255,0.14);
  --dpm-line-soft: rgba(11,22,56,0.12);
  --dpm-shadow: 0 20px 60px -20px rgba(4,6,12,0.45);
  --dpm-glow: 0 24px 50px -18px rgba(29,78,216,0.45);
  --dpm-radius: 2px;
  --dpm-ease: cubic-bezier(.2,.7,.2,1);
  color: var(--dpm-ink);
  overflow-x: hidden;
}

.dpmRoot section {
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
}

.dpmRoot .container { position: relative; z-index: 2; }

.dpmRoot h1, .dpmRoot h2, .dpmRoot h3 {
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}
@media (max-width: 767.98px) {

  .introSection__image{
    width: 100%;
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    margin: 0 auto 20px;
    border-radius: 10px;
  }

}
.dpmRoot p { line-height: 1.7; margin: 0 0 14px; }

.dpmRoot button { cursor: pointer; border: none; }

/* Reveal-on-scroll utility (JS toggles .is-visible) */
.dpmRoot [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--dpm-ease), transform .7s var(--dpm-ease);
}
.dpmRoot [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .dpmRoot [data-reveal] { opacity: 1; transform: none; transition: none; }
  .dpmRoot * { animation: none !important; transition-duration: .01ms !important; }
}

/* ==================================================================
   SHARED KEYFRAMES
   ================================================================== */
@keyframes dpmFloatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes dpmPulseRing { 0% { box-shadow: 0 0 0 0 rgba(76,141,255,0.55); } 100% { box-shadow: 0 0 0 14px rgba(76,141,255,0); } }
@keyframes dpmDotPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.35); } }
@keyframes dpmGradientPan { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }
@keyframes dpmFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes dpmSpinSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ==================================================================
   GRADIENT HEADINGS (kept within black / blue / white palette)
   ================================================================== */
.dpmRoot .heroSection__title,
.dpmRoot .problemSection__title,
.dpmRoot .lifecycleSection__title,
.dpmRoot .industriesSection__title,
.dpmRoot .frameworkSection__title,
.dpmRoot .toolsSection__title,
.dpmRoot .benefitsSection__title,
.dpmRoot .engagementSection__title,
.dpmRoot .testimonialSection__title {
  background: linear-gradient(100deg, #ffffff 0%, var(--dpm-blue-bright) 45%, var(--dpm-blue) 75%, #ffffff 100%);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  display: inline-block;
  animation: dpmGradientPan 9s linear infinite;
}

.dpmRoot .trustSection__title,
.dpmRoot .introSection__title,
.dpmRoot .servicesSection__title,
.dpmRoot .whyChooseSection__title,
.dpmRoot .workshopSection__title,
.dpmRoot .complianceSection__title,
.dpmRoot .metricsSection__title,
.dpmRoot .caseStudySection__title,
.dpmRoot .faqSection__title {
  background: linear-gradient(100deg, var(--dpm-navy) 0%, var(--dpm-blue) 45%, var(--dpm-blue-bright) 75%, var(--dpm-navy) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  display: inline-block;
  animation: dpmGradientPan 9s linear infinite;
}

/* ==================================================================
   SHARED BUTTON MECHANICS (.dpm-btn added alongside existing classes)
   Colors/backgrounds stay defined by each section's own CTA class —
   this layer only adds the shine-sweep + lift + focus ring.
   ================================================================== */
.dpmRoot .dpm-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  will-change: transform;
}
.dpmRoot .dpm-btn::before {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.35) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left .65s var(--dpm-ease);
  z-index: 1;
  pointer-events: none;
}
.dpmRoot .dpm-btn:hover::before { left: 130%; }
.dpmRoot .dpm-btn:active { transform: translateY(-1px) scale(0.98) !important; }
.dpmRoot .dpm-btn:focus-visible {
  outline: 2px solid var(--dpm-blue-bright);
  outline-offset: 3px;
}
.dpmRoot .dpm-btn span,
.dpmRoot .dpm-btn svg { position: relative; z-index: 2; }

/* ==================================================================


/* ==================================================================
   HERO — split layout: left copy, right animated dashboard
   ================================================================== */
.heroSection {
  background: radial-gradient(1200px 600px at 15% -10%, rgba(29,78,216,0.35), transparent 60%),
              linear-gradient(180deg, var(--dpm-black) 0%, var(--dpm-ink) 100%);
  color: var(--dpm-white);
  padding-top: 70px;
  padding-bottom: 70px;
  overflow: hidden;
}
.heroSection__overlay {
  position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 20% 20%, rgba(4,6,12,0.4) 0%, rgba(4,6,12,0.92) 70%),
              linear-gradient(180deg, rgba(4,6,12,0.85), rgba(10,15,31,0.95));
}
.heroSection__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.45;
  pointer-events: none;
  animation: dpmFloatY 9s var(--dpm-ease) infinite;
}
.heroSection__orb--one { width: 340px; height: 340px; top: -100px; left: -60px; background: rgba(29,78,216,0.55); }
.heroSection__orb--two { width: 300px; height: 300px; bottom: -100px; right: -40px; background: rgba(76,141,255,0.4); animation-delay: 2.4s; }

.heroSection__container { padding-top: 20px; padding-bottom: 10px; }
.heroSection__row { position: relative; z-index: 2; }
.heroSection__left { text-align: left; align-self: flex-start; }

.heroSection__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 11.5px;
  color: var(--dpm-blue-bright); font-weight: 800; margin-bottom: 22px;
  padding: 8px 16px; border: 1px solid rgba(76,141,255,0.4); border-radius: 999px;
  background: rgba(76,141,255,0.08);
}
.heroSection__eyebrow svg { color: var(--dpm-blue-bright); }

.heroSection__title {
  font-size: clamp(30px, 4.2vw, 46px);
  line-height: 1.12;
  margin-bottom: 20px;
  color: var(--dpm-white);
}
.heroSection__titleAccent {
  display: block;
  background: linear-gradient(100deg, var(--dpm-blue-bright) 0%, var(--dpm-blue) 50%, var(--dpm-blue-bright) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  animation: dpmGradientPan 9s linear infinite;
}
.heroSection__paragraph {
  color: rgba(255,255,255,0.72); max-width: 580px; font-size: 15.5px;
}
.heroSection__link { color: var(--dpm-blue-bright); font-weight: 700; }

.heroSection__ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin: 26px 0 6px;
}
.heroSection__ctaPrimary, .heroSection__ctaSecondary {
  padding: 15px 26px; font-size: 14px; font-weight: 700; letter-spacing: 0.01em;
  border-radius: 8px; transition: transform .3s var(--dpm-ease), box-shadow .3s var(--dpm-ease), background .3s;
}
.heroSection__ctaPrimary {
  background: var(--dpm-blue); color: var(--dpm-white);
  box-shadow: 0 12px 30px -10px rgba(29,78,216,0.7);
}
.heroSection__ctaPrimary:hover { transform: translateY(-3px); background: var(--dpm-blue-bright); box-shadow: 0 18px 40px -10px rgba(76,141,255,0.7); }
.heroSection__ctaSecondary {
  background: transparent; color: var(--dpm-white); border: 1px solid rgba(255,255,255,0.35) !important;
}
.heroSection__ctaSecondary:hover { transform: translateY(-3px); border-color: var(--dpm-blue-bright) !important; color: var(--dpm-blue-bright); background: rgba(76,141,255,0.08); }

.heroSection__videoFrame {
  position: fixed; inset: 0; z-index: 999; background: rgba(4,6,12,0.92);
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
.heroSection__videoFrame[hidden] { display: none; }
.heroSection__video { width: 100%; max-width: 900px; border-radius: var(--dpm-radius); }
.heroSection__videoClose {
  position: absolute; top: 24px; right: 28px; background: transparent; color: var(--dpm-white);
  font-size: 34px; line-height: 1; width: 44px; height: 44px; transition: transform .3s, color .3s;
}
.heroSection__videoClose:hover { transform: rotate(90deg); color: var(--dpm-blue-bright); }

/* ==================================================================
   DASHBOARD MOCKUP — tilted, animated, "functional" looking
   ================================================================== */
.heroSection__right { perspective: 1800px; }
.dpmDash {
  position: relative;
  background: linear-gradient(160deg, #0c1226 0%, #060913 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.7), 0 0 0 1px rgba(76,141,255,0.06);
  padding: 14px 16px 18px;
  transform: rotateY(-9deg) rotateX(4deg) scale(0.98);
  transform-style: preserve-3d;
  transition: transform .6s var(--dpm-ease);
  animation: dpmFloatY 7s var(--dpm-ease) infinite;
  font-size: 11px;
  color: rgba(255,255,255,0.85);
}
.heroSection__right:hover .dpmDash { transform: rotateY(-3deg) rotateX(1deg) scale(1); }

.dpmDash__topbar { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.dpmDash__logo {
  width: 26px; height: 26px; border-radius: 7px; background: var(--dpm-blue);
  color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px;
  flex-shrink: 0;
}
.dpmDash__search {
  flex: 1; display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; padding: 7px 12px; color: rgba(255,255,255,0.4); font-size: 11px;
}
.dpmDash__bell { position: relative; color: rgba(255,255,255,0.6); flex-shrink: 0; }
.dpmDash__bellDot {
  position: absolute; top: -2px; right: -2px; width: 7px; height: 7px; border-radius: 50%;
  background: #ff5c5c; box-shadow: 0 0 0 0 rgba(255,92,92,0.6); animation: dpmPulseRing 1.8s infinite;
}
.dpmDash__avatar { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 1px solid rgba(255,255,255,0.2); }

.dpmDash__body { display: flex; gap: 12px; }
.dpmDash__sidebar { display: flex; flex-direction: column; gap: 2px; flex: 0 0 78px; }
.dpmDash__navItem {
  display: flex; align-items: center; gap: 7px; padding: 7px 8px; border-radius: 6px;
  color: rgba(255,255,255,0.45); font-size: 9.5px; font-weight: 600; white-space: nowrap;
}
.dpmDash__navItem svg { flex-shrink: 0; }
.dpmDash__navItem.is-active { background: rgba(76,141,255,0.16); color: var(--dpm-blue-bright); }

.dpmDash__main { flex: 1; min-width: 0; }
.dpmDash__mainTitle { font-size: 13px; font-weight: 800; color: #fff; margin: 0 0 10px; }

.dpmDash__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 10px; }
.dpmDash__stat {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px; padding: 8px 9px; transition: border-color .3s, background .3s;
}
.dpmDash__stat:hover { border-color: rgba(76,141,255,0.4); background: rgba(76,141,255,0.06); }
.dpmDash__statLabel { display: block; font-size: 8.5px; color: rgba(255,255,255,0.45); margin-bottom: 3px; }
.dpmDash__statValue { display: block; font-size: 15px; font-weight: 800; color: #fff; }
.dpmDash__statDelta { display: block; font-size: 8px; font-weight: 700; margin-top: 3px; }
.dpmDash__statDelta--up { color: #35d187; }
.dpmDash__statDelta--down { color: #ff6b6b; }

.dpmDash__grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 8px; margin-bottom: 8px; }
.dpmDash__grid--three { grid-template-columns: 0.8fr 1.1fr 1fr; }
.dpmDash__card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px; padding: 10px;
}
.dpmDash__card h5 { font-size: 9.5px; font-weight: 800; color: #fff; margin: 0 0 6px; }
.dpmDash__cardHead { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.dpmDash__cardHead h5 { margin: 0; }
.dpmDash__pill {
  font-size: 7.5px; font-weight: 700; color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.06); padding: 3px 7px; border-radius: 999px;
}

.dpmDash__chartSvg { width: 100%; height: 62px; display: block; }
.dpmDash__chartArea { fill: url(#dpmChartGradient); opacity: 0.35; }
.dpmDash__chartLine {
  fill: none; stroke: var(--dpm-blue-bright); stroke-width: 2.4;
  stroke-linecap: round; stroke-linejoin: round;
}
.dpmDash__chartDot { fill: var(--dpm-blue-bright); animation: dpmDotPulse 1.6s ease-in-out infinite; }
.dpmDash__chartLabels { display: flex; justify-content: space-between; margin-top: 4px; font-size: 7px; color: rgba(255,255,255,0.35); }

.dpmDash__donut {
  width: 62px; height: 62px; border-radius: 50%; margin: 0 auto 8px;
  background: conic-gradient(var(--dpm-blue-bright) 0 0%, rgba(255,255,255,0.08) 0 100%);
  transition: background 1.4s var(--dpm-ease);
  position: relative;
}
.dpmDash__donut::after {
  content: ""; position: absolute; inset: 13px; border-radius: 50%; background: #0c1226;
}
.dpmDash__legend { list-style: none; padding: 0; margin: 0; }
.dpmDash__legend li {
  display: flex; align-items: center; gap: 6px; font-size: 8.5px; color: rgba(255,255,255,0.6);
  padding: 2px 0;
}
.dpmDash__legend b { margin-left: auto; color: #fff; }
.dpmDash__dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.dpmDash__dot--1 { background: var(--dpm-blue-bright); }
.dpmDash__dot--2 { background: #35d187; }
.dpmDash__dot--3 { background: #b98bff; }
.dpmDash__dot--4 { background: #ffb454; }

.dpmDash__gauge {
  width: 58px; height: 58px; border-radius: 50%; margin: 0 auto 8px; position: relative;
  background: conic-gradient(var(--dpm-blue-bright) 0deg, rgba(255,255,255,0.08) 0deg);
  transition: background 1.4s var(--dpm-ease);
  display: flex; align-items: center; justify-content: center;
}
.dpmDash__gauge::after { content: ""; position: absolute; inset: 8px; border-radius: 50%; background: #0c1226; }
.dpmDash__gauge span { position: relative; z-index: 2; font-size: 11px; font-weight: 800; color: #fff; }
.dpmDash__healthy { text-align: center; font-size: 8.5px; color: #35d187; font-weight: 700; margin: 0; }

.dpmDash__progressRow { display: flex; justify-content: space-between; font-size: 8.5px; color: rgba(255,255,255,0.55); margin-bottom: 4px; }
.dpmDash__progressRow b { color: #fff; }
.dpmDash__progressTrack { height: 5px; border-radius: 4px; background: rgba(255,255,255,0.08); overflow: hidden; margin-bottom: 8px; }
.dpmDash__progressFill { height: 100%; width: 0; border-radius: 4px; background: linear-gradient(90deg, var(--dpm-blue), var(--dpm-blue-bright)); transition: width 1.4s var(--dpm-ease); }
.dpmDash__roadmapList { list-style: none; padding: 0; margin: 0; }
.dpmDash__roadmapList li { display: flex; align-items: center; justify-content: space-between; padding: 3px 0; font-size: 8px; color: rgba(255,255,255,0.6); }
.dpmDash__tag { font-size: 7px; font-weight: 700; padding: 2px 6px; border-radius: 999px; }
.dpmDash__tag--done { background: rgba(53,209,135,0.16); color: #35d187; }
.dpmDash__tag--progress { background: rgba(76,141,255,0.18); color: var(--dpm-blue-bright); }
.dpmDash__tag--planned { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); }

.dpmDash__velocityNum { font-size: 16px; font-weight: 800; color: #fff; }
.dpmDash__velocityNum span { font-size: 8px; font-weight: 600; color: rgba(255,255,255,0.45); margin-left: 4px; }
.dpmDash__bars { display: flex; align-items: flex-end; gap: 4px; height: 40px; margin-top: 8px; }
.dpmDash__bars span {
  flex: 1; height: 0; background: linear-gradient(180deg, var(--dpm-blue-bright), var(--dpm-blue));
  border-radius: 3px 3px 0 0; transition: height 1.2s var(--dpm-ease);
}
.dpmDash__barLabels { display: flex; justify-content: space-between; margin-top: 3px; font-size: 6.5px; color: rgba(255,255,255,0.35); }

.dpmDash__card--feedback { margin-top: 8px; }
.dpmDash__feedbackList { list-style: none; padding: 0; margin: 0; }
.dpmDash__feedbackList li { display: flex; align-items: center; gap: 8px; padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.dpmDash__feedbackList li:last-child { border-bottom: none; }
.dpmDash__feedbackList img { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.dpmDash__feedbackList p { margin: 0; font-size: 8.5px; color: rgba(255,255,255,0.7); line-height: 1.3; }
.dpmDash__feedbackList p span { display: block; font-size: 7.5px; color: rgba(255,255,255,0.4); margin-top: 1px; }
.dpmDash__feedbackList time { font-size: 7px; color: rgba(255,255,255,0.3); flex-shrink: 0; margin-left: auto; }
.dpmDash__viewAll { display: block; text-align: right; font-size: 8.5px; font-weight: 700; color: var(--dpm-blue-bright); margin-top: 6px; }

@media (max-width: 991.98px) {
  .heroSection__right { display: none; }
  .heroSection__left { align-self: flex-start; }
  .heroSection__paragraph { margin-left: auto; margin-right: auto; }
  .heroSection__ctas { justify-content: center; }
}
/* ==================================================================
   TRUST & CREDIBILITY — light
   ================================================================== */
.trustSection { background: var(--dpm-white); }
.trustSection__intro { max-width: 780px; margin-bottom: 30px; }
.trustSection__title { font-size: clamp(26px, 3vw, 36px); }
.trustSection__lead { font-size: 18px; color: var(--dpm-ink); }
.trustSection__paragraph { color: #3c4658; }

.trustSection__commitments { margin: 30px 0 10px; }
.trustSection__commitment {
  padding: 26px 22px; border: 1px solid var(--dpm-line-soft); border-radius: 8px;
  margin-bottom: 24px; background: var(--dpm-blue-pale);
  transition: transform .35s var(--dpm-ease), box-shadow .35s var(--dpm-ease);
  overflow: hidden;
}
.trustSection__commitment:hover { transform: translateY(-8px); box-shadow: var(--dpm-glow); }
.trustSection__commitmentNum { font-size: 13px; font-weight: 800; color: var(--dpm-blue); letter-spacing: 0.08em; }
.trustSection__commitmentTitle { font-size: 19px; margin: 10px 0 8px; color: var(--dpm-navy); }

.trustSection__stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-top: 26px; border-top: 1px solid var(--dpm-line-soft); padding-top: 26px;
}
.trustSection__stat { transition: transform .3s var(--dpm-ease); }
.trustSection__stat:hover { transform: translateY(-4px); }
.trustSection__stat span { display: block; font-size: 26px; font-weight: 800; color: var(--dpm-navy); }
.trustSection__stat p { font-size: 13px; color: #5b6578; margin: 4px 0 0; }
@media (max-width: 767.98px) { .trustSection__stats { grid-template-columns: repeat(2, 1fr); } }

/* ==================================================================
   WHY MOST DIGITAL PRODUCTS FAIL — dark
   ================================================================== */
.problemSection { background: var(--dpm-navy); color: var(--dpm-white); overflow: hidden; }
.problemSection__bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.12; }
.problemSection__intro { max-width: 760px; }
.problemSection__intro p { color: rgba(255,255,255,0.72); font-size: 17px; }
.problemSection__subhead { font-size: 14px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--dpm-blue-bright); margin: 26px 0 18px; }

.problemSection__list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.problemSection__item {
  display: flex; gap: 14px; padding: 20px; border: 1px solid var(--dpm-line);
  border-radius: 8px; background: rgba(255,255,255,0.03);
  transition: border-color .3s, background .3s, transform .35s var(--dpm-ease);
  overflow: hidden;
}
.problemSection__item:hover { border-color: rgba(76,141,255,0.5); background: rgba(255,255,255,0.06); transform: translateY(-6px); }
.problemSection__item svg { color: #ff6b6b; flex-shrink: 0; margin-top: 3px; transition: transform .4s var(--dpm-ease); }
.problemSection__item:hover svg { transform: scale(1.15) rotate(-6deg); }
.problemSection__item h3 { font-size: 16.5px; margin-bottom: 6px; }
.problemSection__item p { color: rgba(255,255,255,0.65); font-size: 14.5px; margin: 0; }

.problemSection__closing { max-width: 760px; color: rgba(255,255,255,0.72); margin-top: 26px; }
.problemSection__ctaWrap { margin-top: 8px; }
.problemSection__cta {
  background: var(--dpm-blue); color: var(--dpm-white); padding: 15px 30px;
  font-weight: 700; font-size: 14.5px; border-radius: var(--dpm-radius);
  transition: transform .3s var(--dpm-ease), background .3s, box-shadow .3s;
}
.problemSection__cta:hover { transform: translateY(-3px); background: var(--dpm-blue-bright); box-shadow: var(--dpm-glow); }

@media (max-width: 767.98px) { .problemSection__list { grid-template-columns: 1fr; } }

/* ==================================================================
   WHAT IS DIGITAL PRODUCT MANAGEMENT — light
   ================================================================== */
.introSection { background: var(--dpm-white); }
.introSection__text p { color: #3c4658; }
.introSection__pillars { list-style: none; padding: 0; margin: 18px 0 20px; }
.introSection__pillars li {
  padding: 12px 0 12px 22px; border-left: 3px solid var(--dpm-blue);
  margin-bottom: 10px; color: #3c4658; background: var(--dpm-blue-pale);
  border-radius: 0 8px 8px 0; transition: transform .3s var(--dpm-ease), border-color .3s;
}
.introSection__pillars li:hover { transform: translateX(6px); border-color: var(--dpm-blue-bright); }
.introSection__pillars strong { color: var(--dpm-navy); }

.introSection__panel { position: relative; margin-top: 40px; }
.introSection__image {
  width: 100%; border-radius: 8px; box-shadow: var(--dpm-shadow);
  aspect-ratio: 4/3; object-fit: cover; transition: transform .5s var(--dpm-ease);
}
.introSection__panel:hover .introSection__image { transform: scale(1.02); }
.introSection__coversCard {
  background: var(--dpm-navy); color: var(--dpm-white); padding: 26px;
  border-radius: 8px; margin-top: -50px; margin-left: 24px; margin-right: -8px;
  position: relative; box-shadow: var(--dpm-shadow);
  transition: transform .4s var(--dpm-ease);
}
.introSection__coversCard:hover { transform: translateY(-6px); }
.introSection__coversCard h3 { font-size: 16px; color: var(--dpm-blue-bright); margin-bottom: 12px; }
.introSection__coversCard ul { list-style: none; padding: 0; margin: 0; columns: 2; column-gap: 20px; }
.introSection__coversCard li { font-size: 13.5px; color: rgba(255,255,255,0.82); padding: 5px 0; break-inside: avoid; transition: color .25s, transform .25s; }
.introSection__coversCard li:hover { color: var(--dpm-blue-bright); transform: translateX(4px); }
.introSection__closing { color: #3c4658; margin-top: 30px; max-width: 900px; }

@media (max-width: 991.98px) {
  .introSection__coversCard { margin-left: 0; margin-right: 0; margin-top: 20px; }
  .introSection__coversCard ul { columns: 1; }
}

/* ==================================================================
   LIFECYCLE — dark (signature horizontal route timeline)
   ================================================================== */
.lifecycleSection { background: var(--dpm-black); color: var(--dpm-white); }
.lifecycleSection__lead { color: rgba(255,255,255,0.65); max-width: 760px; margin-bottom: 40px; }

.lifecycleSection__track {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 0;
  position: relative; padding-top: 30px;
}
.lifecycleSection__track::before {
  content: ""; position: absolute; top: 14px; left: 4%; right: 4%; height: 1px;
  background: repeating-linear-gradient(90deg, var(--dpm-blue-bright) 0 8px, transparent 8px 16px);
  opacity: 0.55;
}
.lifecycleSection__stop { position: relative; padding: 14px 12px; text-align: left; border-radius: 8px; transition: background .35s var(--dpm-ease), transform .35s var(--dpm-ease); }
.lifecycleSection__stop:hover { background: rgba(76,141,255,0.08); transform: translateY(-6px); }
.lifecycleSection__dot {
  width: 13px; height: 13px; border-radius: 50%; background: var(--dpm-black);
  border: 2px solid var(--dpm-blue-bright); margin-bottom: 18px; position: relative; z-index: 2;
  transition: transform .35s var(--dpm-ease), box-shadow .35s var(--dpm-ease), background .35s;
}
.lifecycleSection__stop:hover .lifecycleSection__dot {
  background: var(--dpm-blue-bright);
  transform: scale(1.5);
  box-shadow: 0 0 0 6px rgba(76,141,255,0.2);
}
.lifecycleSection__num {
  position: absolute; top: -26px; left: 26px; font-size: 11px; font-weight: 800;
  color: rgba(255,255,255,0.35); letter-spacing: 0.1em; transition: color .3s;
}
.lifecycleSection__stop:hover .lifecycleSection__num { color: var(--dpm-blue-bright); }
.lifecycleSection__stop h3 { font-size: 14.5px; margin-bottom: 8px; color: var(--dpm-white); transition: color .3s; }
.lifecycleSection__stop:hover h3 { color: var(--dpm-blue-bright); }
.lifecycleSection__stop p { font-size: 12.5px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.lifecycleSection__closing { color: rgba(255,255,255,0.6); margin-top: 34px; max-width: 800px; }

@media (max-width: 991.98px) {
  .lifecycleSection__track { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
  .lifecycleSection__track::before { display: none; }
}
@media (max-width: 575.98px) {
  .lifecycleSection__track { grid-template-columns: 1fr; }
}

/* ==================================================================
   SERVICES — light
   ================================================================== */
.servicesSection { background: var(--dpm-blue-pale); }
.servicesSection__lead { color: #3c4658; max-width: 760px; margin-bottom: 30px; }
.servicesSection__grid { margin: 0 -12px; }
.servicesSection__card {
  background: var(--dpm-white); border: 1px solid var(--dpm-line-soft); border-radius: 8px;
  padding: 28px 24px; margin-bottom: 24px;
  transition: transform .35s var(--dpm-ease), box-shadow .35s var(--dpm-ease), border-color .35s;
}
.servicesSection__card:hover { transform: translateY(-8px); box-shadow: var(--dpm-glow); border-color: var(--dpm-blue-bright); }
.servicesSection__card svg { color: var(--dpm-blue); margin-bottom: 14px; }
.servicesSection__card h3 { font-size: 17.5px; color: var(--dpm-navy); }
.servicesSection__card p { font-size: 14px; color: #4a5468; margin: 0; }
.servicesSection__closing { color: #3c4658; margin-top: 10px; }
.servicesSection__ctaWrap { margin-top: 6px; }
.servicesSection__cta {
  background: var(--dpm-navy); color: var(--dpm-white); padding: 15px 30px;
  font-weight: 700; font-size: 14.5px; border-radius: var(--dpm-radius);
  transition: transform .3s var(--dpm-ease), background .3s, box-shadow .3s;
}
.servicesSection__cta:hover { transform: translateY(-3px); background: var(--dpm-blue); box-shadow: var(--dpm-glow); }

/* ==================================================================
   INDUSTRIES — dark
   ================================================================== */
.industriesSection { background: var(--dpm-navy-2); color: var(--dpm-white); overflow: hidden; }
.industriesSection__bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.1; }
.industriesSection__lead { color: rgba(255,255,255,0.65); max-width: 820px; margin-bottom: 30px; }
.industriesSection__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--dpm-line); border: 1px solid var(--dpm-line); border-radius: 8px; overflow: hidden;
}
.industriesSection__item { background: var(--dpm-navy-2); padding: 22px 18px; transition: background .35s, transform .35s var(--dpm-ease); position: relative; z-index: 1; }
.industriesSection__item:hover { background: #fff; transform: translateY(-4px) scale(1.02); z-index: 2; }
.industriesSection__item:hover p{color: #000;}

.industriesSection__item h3 { font-size: 15.5px; color: var(--dpm-blue-bright); margin-bottom: 8px; transition: letter-spacing .3s; }
.industriesSection__item:hover h3 { letter-spacing: 0.02em; }
.industriesSection__item p { font-size: 12.5px; color: rgba(255,255,255,0.55); margin: 0; line-height: 1.6; }
.industriesSection__closing { color: rgba(255,255,255,0.65); margin-top: 30px; max-width: 800px; }

@media (max-width: 991.98px) { .industriesSection__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575.98px) { .industriesSection__grid { grid-template-columns: 1fr; } }

/* ==================================================================
   WHY CHOOSE SISGAIN — light
   ================================================================== */
.whyChooseSection { background: var(--dpm-white); }
.whyChooseSection__lead { color: #3c4658; max-width: 780px; margin-bottom: 30px; }
.whyChooseSection__list { columns: 2; column-gap: 30px; }
.whyChooseSection__row {
  display: flex; gap: 12px; break-inside: avoid; padding: 14px 12px; border-bottom: 1px solid var(--dpm-line-soft);
  border-radius: 6px; transition: background .3s, transform .3s var(--dpm-ease), padding-left .3s;
}
.whyChooseSection__row:hover { background: var(--dpm-blue-pale); transform: translateX(4px); }
.whyChooseSection__row svg { color: var(--dpm-blue); flex-shrink: 0; margin-top: 2px; transition: transform .35s var(--dpm-ease); }
.whyChooseSection__row:hover svg { transform: scale(1.2) rotate(-8deg); }
.whyChooseSection__row p { margin: 0; font-size: 14.5px; color: #333c4d; }
.whyChooseSection__row strong { color: var(--dpm-navy); }
.whyChooseSection__ctaWrap { margin-top: 26px; }
.whyChooseSection__cta {
  background: var(--dpm-blue); color: var(--dpm-white); padding: 15px 30px;
  font-weight: 700; font-size: 14.5px; border-radius: var(--dpm-radius);
  transition: transform .3s var(--dpm-ease), background .3s, box-shadow .3s;
}
.whyChooseSection__cta:hover { transform: translateY(-3px); background: var(--dpm-blue-bright); box-shadow: var(--dpm-glow); }

@media (max-width: 767.98px) { .whyChooseSection__list { columns: 1; } }

/* ==================================================================
   FRAMEWORK — dark (process pillars)
   ================================================================== */
.frameworkSection { background: var(--dpm-black); color: var(--dpm-white); }
.frameworkSection__lead { color: rgba(255,255,255,0.65); max-width: 780px; }
.frameworkSection__subhead { font-size: 13px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--dpm-blue-bright); margin: 30px 0 20px; }
.frameworkSection__pillars {
  display: flex; overflow-x: auto; gap: 18px; padding-bottom: 14px;
  scroll-snap-type: x proximity;
}
.frameworkSection__pillars::-webkit-scrollbar { height: 6px; }
.frameworkSection__pillars::-webkit-scrollbar-thumb { background: var(--dpm-blue); border-radius: 6px; }
.frameworkSection__pillar {
  flex: 0 0 240px; scroll-snap-align: start; padding: 24px 20px; border: 1px solid var(--dpm-line);
  border-radius: 8px; background: rgba(255,255,255,0.03);
  border-top: 2px solid var(--dpm-blue-bright);
  transition: transform .35s var(--dpm-ease), background .35s, box-shadow .35s;
}
.frameworkSection__pillar:hover { transform: translateY(-8px); background: rgba(76,141,255,0.08); box-shadow: var(--dpm-glow); }
.frameworkSection__pillar h3 { font-size: 16px; margin-bottom: 8px; }
.frameworkSection__pillar p { font-size: 13.5px; color: rgba(255,255,255,0.6); margin: 0; }
.frameworkSection__closing { color: rgba(255,255,255,0.6); margin-top: 26px; max-width: 780px; }

/* ==================================================================
   PRODUCT DISCOVERY WORKSHOP — light
   Image height reduced + right column becomes an internal scroll area
   ================================================================== */
.workshopSection { background: var(--dpm-blue-pale); }
.workshopSection__row { align-items: flex-start; }
.workshopSection__imageCol { margin-bottom: 30px; }
.workshopSection__imageStick { position: relative; }
.workshopSection__image {
  width: 100%; border-radius: 8px; box-shadow: var(--dpm-shadow);
  aspect-ratio: 4 / 3;      /* was 4/5 — noticeably shorter now */
  max-height: 420px;
  object-fit: cover;
  transition: transform .5s var(--dpm-ease);
}
.workshopSection__imageStick:hover .workshopSection__image { transform: scale(1.02); }

.workshopSection__content p { color: #3c4658; }
.workshopSection__subhead { font-size: 15px; color: var(--dpm-navy); margin: 22px 0 14px; }
.workshopSection__list { list-style: none; padding: 0; margin: 0 0 10px; }
.workshopSection__list li {
  padding: 10px 0 10px 20px; position: relative; color: #333c4d; font-size: 14.5px;
  border-bottom: 1px solid var(--dpm-line-soft); transition: transform .3s var(--dpm-ease);
}
.workshopSection__list li:hover { transform: translateX(6px); }
.workshopSection__list li::before {
  content: ""; position: absolute; left: 0; top: 19px; width: 8px; height: 8px; background: var(--dpm-blue); border-radius: 50%;
  transition: transform .3s var(--dpm-ease), background .3s;
}
.workshopSection__list li:hover::before { transform: scale(1.4); background: var(--dpm-blue-bright); }
.workshopSection__list strong { color: var(--dpm-navy); }
.workshopSection__cta {
  margin-top: 16px; background: var(--dpm-navy); color: var(--dpm-white); padding: 15px 30px;
  font-weight: 700; font-size: 14.5px; border-radius: var(--dpm-radius);
  transition: transform .3s var(--dpm-ease), background .3s, box-shadow .3s;
}
.workshopSection__cta:hover { transform: translateY(-3px); background: var(--dpm-blue); box-shadow: var(--dpm-glow); }

/* --- desktop only: content column scrolls internally, image stays compact --- */
@media (min-width: 992px) {
  .workshopSection__row { display: flex; }
  .workshopSection__imageCol { position: sticky; top: 24px; }
  .workshopSection__content {
    max-height: 480px;
    overflow-y: auto;
    padding-right: 14px;
  }
  .workshopSection__content::-webkit-scrollbar { width: 6px; }
  .workshopSection__content::-webkit-scrollbar-track { background: rgba(11,22,56,0.06); border-radius: 6px; }
  .workshopSection__content::-webkit-scrollbar-thumb { background: var(--dpm-blue); border-radius: 6px; }
  .workshopSection__content { scrollbar-width: thin; scrollbar-color: var(--dpm-blue) transparent; }
}

/* ==================================================================
   TECHNOLOGIES & TOOLS — dark
   ================================================================== */
.toolsSection { background: var(--dpm-navy); color: var(--dpm-white); }
.toolsSection__lead { color: rgba(255,255,255,0.65); max-width: 760px; margin-bottom: 30px; }
.toolsSection__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.toolsSection__group {
  border: 1px solid var(--dpm-line); border-radius: 8px; padding: 20px;
  transition: border-color .3s, background .3s, transform .35s var(--dpm-ease);
}
.toolsSection__group:hover { border-color: var(--dpm-blue-bright); background: rgba(255,255,255,0.04); transform: translateY(-6px); }
.toolsSection__group h3 { font-size: 14px; color: var(--dpm-blue-bright); margin-bottom: 8px; }
.toolsSection__group p { font-size: 13px; color: rgba(255,255,255,0.6); margin: 0; }
.toolsSection__closing { color: rgba(255,255,255,0.6); margin-top: 30px; max-width: 780px; }

@media (max-width: 991.98px) { .toolsSection__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575.98px) { .toolsSection__grid { grid-template-columns: 1fr; } }

/* ==================================================================
   COMPLIANCE & GOVERNANCE — light (incl. CTA banner)
   ================================================================== */
.complianceSection { background: var(--dpm-white); }
.complianceSection__lead { color: #3c4658; max-width: 820px; margin-bottom: 30px; }
.complianceSection__grid { margin-bottom: 10px; }
.complianceSection__card {
  background: var(--dpm-blue-pale); border-radius: 8px; padding: 22px 18px;
  margin-bottom: 20px; transition: transform .35s var(--dpm-ease), box-shadow .35s;
}
.complianceSection__card:hover { transform: translateY(-7px); box-shadow: var(--dpm-glow); }
.complianceSection__card svg { color: var(--dpm-blue); margin-bottom: 10px; }
.complianceSection__card h3 { font-size: 15.5px; color: var(--dpm-navy); margin-bottom: 6px; }
.complianceSection__card p { font-size: 12.5px; color: #4a5468; margin: 0; }

.complianceSection__subhead { font-size: 20px; color: var(--dpm-navy); margin: 30px 0 18px; }
.complianceSection__iconRow { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 20px; }
.complianceSection__iconItem {
  display: flex; align-items: center; gap: 10px; background: var(--dpm-navy); color: var(--dpm-white);
  padding: 12px 16px; border-radius: 8px; font-size: 13px; font-weight: 600;
  transition: transform .3s var(--dpm-ease), background .3s;
}
.complianceSection__iconItem:hover { transform: translateY(-4px); background: var(--dpm-blue); }
.complianceSection__iconItem svg { color: var(--dpm-blue-bright); }
.complianceSection__paragraph { color: #3c4658; max-width: 820px; }

.complianceSection__banner{
    margin-top:30px;
    border-radius:10px;
    overflow:hidden;
    background:linear-gradient(120deg,#050914 0%,#10214a 100%);
}

.complianceSection__bannerContent{
    padding:60px 45px;
    color:#fff;
}

.complianceSection__bannerContent h2{
    font-size:clamp(22px,2.6vw,30px);
    max-width:600px;
}

.complianceSection__bannerContent p{
    color:rgba(255,255,255,.8);
    max-width:520px;
    margin:20px 0 30px;
}

.complianceSection__imageCard{
    height:100%;
    min-height:420px;
    padding:25px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.complianceSection__imageCard img{
    width:100%;
    height:370px;
    object-fit:cover;
    border-radius:14px;
    box-shadow:0 20px 45px rgba(0,0,0,.35);
    transition:.4s ease;
}

.complianceSection__banner:hover .complianceSection__imageCard img{
    transform:translateY(-6px) scale(1.02);
}

.complianceSection__bannerCta{
    background:#fff;
    color:#0b1d48;
    padding:15px 30px;
    font-weight:700;
    border-radius:8px;
    transition:.3s;
}

.complianceSection__bannerCta:hover{
    transform:translateY(-2px);
}

@media (max-width:991px){

    .complianceSection__bannerContent{
        padding:40px 25px 20px;
    }

    .complianceSection__imageCard{
        min-height:auto;
        padding:0 25px 30px;
    }

    .complianceSection__imageCard img{
        height:260px;
    }
}
.complianceSection__bannerCta:hover { transform: translateY(-3px); background: var(--dpm-blue-bright); color: var(--dpm-white); }

/* ==================================================================
   BENEFITS — dark
   ================================================================== */
.benefitsSection { background: var(--dpm-black); color: var(--dpm-white); }
.benefitsSection__lead { color: rgba(255,255,255,0.65); max-width: 780px; margin-bottom: 30px; }
.benefitsSection__card {
  border: 1px solid var(--dpm-line); border-radius: 8px; padding: 22px 18px; margin-bottom: 20px;
  transition: border-color .3s, transform .35s var(--dpm-ease), background .3s;
}
.benefitsSection__card:hover { transform: translateY(-7px); border-color: var(--dpm-blue-bright); background: rgba(76,141,255,0.06); }
.benefitsSection__card h3 { font-size: 15.5px; color: var(--dpm-blue-bright); margin-bottom: 8px; }
.benefitsSection__card p { font-size: 13px; color: rgba(255,255,255,0.6); margin: 0; }
.benefitsSection__closing { color: rgba(255,255,255,0.6); margin-top: 10px; max-width: 780px; }

/* ==================================================================
   PRODUCT SUCCESS METRICS — light (dashboard)
   ================================================================== */
.metricsSection { background: var(--dpm-blue-pale); }
.metricsSection__lead { color: #3c4658; max-width: 780px; }
.metricsSection__subhead { font-size: 13px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--dpm-blue); margin: 26px 0 18px; }
.metricsSection__dashboard { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.metricsSection__panel {
  background: var(--dpm-white); border: 1px solid var(--dpm-line-soft); border-radius: 8px;
  padding: 22px 18px; position: relative; overflow: hidden;
  transition: transform .35s var(--dpm-ease), box-shadow .35s;
}
.metricsSection__panel:hover { transform: translateY(-7px); box-shadow: var(--dpm-glow); }
.metricsSection__panel::before {
  content: ""; position: absolute; top: 0; left: 0; height: 3px; width: 42px; background: var(--dpm-blue);
  transition: width .4s var(--dpm-ease);
}
.metricsSection__panel:hover::before { width: 100%; }
.metricsSection__panel svg { color: var(--dpm-blue); margin: 6px 0 10px; }
.metricsSection__panel h3 { font-size: 15px; color: var(--dpm-navy); margin-bottom: 6px; }
.metricsSection__panel p { font-size: 12.5px; color: #4a5468; margin: 0; }
.metricsSection__closing { color: #3c4658; margin-top: 26px; max-width: 800px; }

@media (max-width: 767.98px) { .metricsSection__dashboard { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575.98px) { .metricsSection__dashboard { grid-template-columns: 1fr; } }

/* ==================================================================
   ENGAGEMENT MODELS — dark
   ================================================================== */
.engagementSection { background: var(--dpm-navy); color: var(--dpm-white); }
.engagementSection__lead { color: rgba(255,255,255,0.65); max-width: 780px; margin-bottom: 30px; }
.engagementSection__cards { display: flex; gap: 18px; overflow-x: auto; padding-bottom: 14px; scroll-snap-type: x proximity; }
.engagementSection__cards::-webkit-scrollbar { height: 6px; }
.engagementSection__cards::-webkit-scrollbar-thumb { background: var(--dpm-blue-bright); border-radius: 6px; }
.engagementSection__card {
  flex: 0 0 270px; scroll-snap-align: start; background: rgba(255,255,255,0.04);
  border: 1px solid var(--dpm-line); border-radius: 8px; padding: 24px 20px;
  transition: transform .35s var(--dpm-ease), box-shadow .35s, border-color .3s;
}
.engagementSection__card:hover { transform: translateY(-8px); border-color: var(--dpm-blue-bright); box-shadow: var(--dpm-glow); }
.engagementSection__card--featured { background: var(--dpm-blue); border-color: var(--dpm-blue-bright); }
.engagementSection__cardTag {
  display: inline-block; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--dpm-blue-bright); font-weight: 800; margin-bottom: 12px;
}
.engagementSection__card--featured .engagementSection__cardTag { color: rgba(255,255,255,0.85); }
.engagementSection__card h3 { font-size: 16.5px; margin-bottom: 8px; }
.engagementSection__card p { font-size: 13.5px; color: rgba(255,255,255,0.65); margin: 0; }
.engagementSection__card--featured p { color: rgba(255,255,255,0.85); }
.engagementSection__closing { color: rgba(255,255,255,0.6); margin-top: 24px; max-width: 780px; }

/* ==================================================================
   CASE STUDIES — light — simple 3-up cards, image on top, content below
   ================================================================== */
.caseStudySection { background: var(--dpm-white); }
.caseStudySection__title { margin-bottom: 30px; }

.caseStudySection__list {
  margin: 0 -8px;
}
.caseStudySection__list > [class*="col-"] {
  padding: 0 8px;
}
.caseStudySection__item {
  background: var(--dpm-white);
  border: 1px solid var(--dpm-line-soft);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
  padding-left: 8px !important;
  padding-right: 8px !important;
  transition: transform .35s var(--dpm-ease), box-shadow .35s var(--dpm-ease), border-color .35s;
}
.caseStudySection__item:hover { transform: translateY(-8px); box-shadow: var(--dpm-glow); border-color: var(--dpm-blue-bright); }

.caseStudySection__imageWrap {
  overflow: hidden;
  line-height: 0;
  margin-left: -8px !important;
  margin-right: -8px !important;
}
.caseStudySection__imageWrap img {
  width: calc(100% + 16px) !important;
  max-width: none !important;
  height: 200px !important;
  display: block !important;
  object-fit: cover !important;
  transition: transform .5s var(--dpm-ease);
}
.caseStudySection__item:hover .caseStudySection__imageWrap img { transform: scale(1.06); }

.caseStudySection__content { padding: 22px 4px 26px; }
.caseStudySection__content h3 { font-size: 18px; color: var(--dpm-navy); }
.caseStudySection__content p { color: #3c4658; font-size: 14px; margin: 0; }

.caseStudySection__closing { color: #3c4658;  margin-top: 10px; }
.caseStudySection__ctaWrap { margin-top: 6px; }
.caseStudySection__cta {
  background: var(--dpm-navy); color: var(--dpm-white); padding: 15px 30px;
  font-weight: 700; font-size: 14.5px; border-radius: var(--dpm-radius);
  transition: transform .3s var(--dpm-ease), background .3s, box-shadow .3s;
}
.caseStudySection__cta:hover { transform: translateY(-3px); background: var(--dpm-blue); box-shadow: var(--dpm-glow); }

/* ==================================================================
   TESTIMONIALS — dark
   ================================================================== */
.testimonialSection { background: var(--dpm-black); color: var(--dpm-white); text-align: center; }
.testimonialSection__title { margin-bottom: 30px; }
.testimonialSection__track { max-width: 720px; margin: 0 auto; min-height: 150px; position: relative; }
.testimonialSection__slide { animation: dpmFadeIn .5s var(--dpm-ease); }
.testimonialSection__slide p { font-size: clamp(18px, 2.2vw, 24px); font-weight: 600; color: var(--dpm-white); line-height: 1.5; }
.testimonialSection__slide span { display: block; margin-top: 16px; color: var(--dpm-blue-bright); font-size: 13.5px; font-weight: 700; }
.testimonialSection__dots { display: flex; justify-content: center; gap: 10px; margin-top: 28px; }
.testimonialSection__dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--dpm-line); padding: 0;
  transition: background .3s, transform .3s;
}
.testimonialSection__dot:hover { transform: scale(1.3); background: rgba(76,141,255,0.6); }
.testimonialSection__dot--active { background: var(--dpm-blue-bright); transform: scale(1.25); animation: dpmDotPulse 1.6s ease-in-out infinite; }
.row{
    justify-content: center;
}
/* ==================================================================
   FAQ — light
   ================================================================== */
.faqSection { background: var(--dpm-white); }
.faqSection__title { margin-bottom: 30px; }
.faqSection__item { border-bottom: 1px solid var(--dpm-line-soft); }
.faqSection__question {
  width: 100%; background: transparent; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 20px 14px; text-align: left; border-radius: 6px; transition: background .3s;
}
.faqSection__question:hover { background: var(--dpm-blue-pale); }
.faqSection__question h3 { font-size: 16px; color: var(--dpm-navy); margin: 0; }
.faqSection__chevron { color: var(--dpm-blue); flex-shrink: 0; transition: transform .3s var(--dpm-ease), color .3s; }
.faqSection__question[aria-expanded="true"] .faqSection__chevron { transform: rotate(135deg); color: var(--dpm-blue-bright); }
.faqSection__answer {
  max-height: 0; overflow: hidden; transition: max-height .4s var(--dpm-ease), padding .4s var(--dpm-ease);
}
.faqSection__answer p { color: #3c4658; font-size: 14.5px; padding: 0 14px 20px; margin: 0; }
.faqSection__item--open .faqSection__answer { max-height: 480px; }