/* Marketing dynamic LP — reference UI (purple / clean long-form) */
:root {
  --mdlp-purple: #9333ea;
  --mdlp-purple-hover: #7e22ce;
  --mdlp-purple-soft: #ede9fe;
  --mdlp-purple-hero-end: #f5f3ff;
  --mdlp-ink: #0f172a;
  --mdlp-muted: #64748b;
  --mdlp-border: #e2e8f0;
  --mdlp-green: #16a34a;
  --mdlp-star: #facc15;
  --mdlp-navy: #0b1220;
  --mdlp-radius: 12px;
  --mdlp-radius-pill: 999px;
  --mdlp-font: "Inter", "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  /* Same gradient for primary CTAs and hero accent text */
  --mdlp-gradient: linear-gradient(to right, #7c3aed, #db2777);
  --mdlp-gradient-soft: radial-gradient(ellipse 70% 55% at 12% 0%, rgba(124, 58, 237, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 70% 55% at 88% 0%, rgba(219, 39, 119, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
  /* Alternating stripes (first post-hero = even) */
  --mdlp-stripe-even-bg: linear-gradient(180deg, #f8fafc 0%, #eef2f7 50%, #f8fafc 100%);
  --mdlp-stripe-odd-bg: linear-gradient(180deg, #fafbfc 0%, #f1f5f9 52%, #fafbfc 100%);
  --mdlp-stripe-even-wash: radial-gradient(ellipse 92% 48% at 50% 0%, rgba(124, 58, 237, 0.07) 0%, transparent 55%);
  --mdlp-stripe-odd-wash: radial-gradient(ellipse 86% 46% at 50% 100%, rgba(219, 39, 119, 0.048) 0%, transparent 52%),
    radial-gradient(ellipse 72% 42% at 12% 14%, rgba(124, 58, 237, 0.05) 0%, transparent 48%);
}

.marketing-dynamic-lp {
  font-family: var(--mdlp-font);
  color: var(--mdlp-ink);
  background: #fff;
}

.mdlp-site-header {
  background: #fff;
  border-bottom: 1px solid var(--mdlp-border);
  position: sticky;
  top: 0;
  z-index: 100;
  /* Notch / safe-area: horizontal inset only (vertical handled by inner) */
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
}
.mdlp-site-header .container {
  max-width: 1120px;
}
.mdlp-site-header-inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem 0.6rem;
  /* Do not use padding shorthand with 0 horizontal — it overrides Bootstrap .container gutters */
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.mdlp-site-header .mdlp-logo {
  flex-shrink: 0;
  line-height: 0;
}
.mdlp-site-header .mdlp-logo img {
  display: block;
  height: 45px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}
/* Header CTA — compact horizontal padding so logo + label fit one row on mobile */
.mdlp-site-header .mdlp-nav-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.6875rem, 2.9vw, 0.875rem);
  font-weight: 600;
  color: var(--mdlp-ink) !important;
  text-decoration: none !important;
  padding: 0.42rem 0.5rem;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: border-color 0.15s, box-shadow 0.15s, color 0.15s;
  flex: 0 0 auto;
  text-align: center;
  white-space: nowrap;
  line-height: 1.2;
}
.mdlp-site-header .mdlp-nav-cta-btn:hover {
  border-color: #d1d5db;
  color: var(--mdlp-ink) !important;
  text-decoration: none !important;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

@media (min-width: 768px) {
  .mdlp-site-header .mdlp-nav-cta-btn {
    padding: 0.5rem 0.95rem;
    font-size: 0.9rem;
    border-radius: 10px;
  }
}

@media (max-width: 380px) {
  .mdlp-site-header .mdlp-logo img {
    height: 28px;
  }
  .mdlp-site-header .mdlp-nav-cta-btn {
    padding: 0.38rem 0.42rem;
    font-size: clamp(0.625rem, 2.85vw, 0.8125rem);
  }
}

/* Hero — soft radial glow + gradient accent + gradient CTA */
.mdlp-hero {
  position: relative;
  background-color: #ffffff;
  background-image: var(--mdlp-gradient-soft);
  padding: 3.75rem 0 3.25rem;
  text-align: center;
}
.mdlp-hero .container {
  max-width: 920px;
}
.mdlp-hero-title {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--mdlp-ink);
  letter-spacing: -0.03em;
  margin-bottom: 1.1rem;
}
.mdlp-hero-title-text,
.mdlp-hero-title-accent {
  display: inline;
}
/* Two-part: one flowing line on desktop (screenshot); wraps only on narrow viewports */
.mdlp-hero-title--two-part {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.mdlp-hero-title--two-part .mdlp-hero-title-text,
.mdlp-hero-title--two-part .mdlp-hero-title-accent {
  display: inline;
}
.mdlp-hero-title-accent {
  background: var(--mdlp-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  -webkit-text-fill-color: transparent;
}
.mdlp-hero-title--two-part .mdlp-hero-title-accent {
  box-decoration-break: slice;
  -webkit-box-decoration-break: slice;
}
@media (max-width: 767px) {
  .mdlp-hero-title--two-part {
    max-width: min(100%, 20ch);
    text-wrap: balance;
  }
}
.mdlp-hero-sub {
  font-size: 1.125rem;
  font-weight: 400;
  color: #4b5563;
  max-width: 42rem;
  margin: 0 auto 1.85rem;
  line-height: 1.6;
}
.mdlp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--mdlp-gradient);
  color: #fff !important;
  font-weight: 700;
  padding: 0.9rem 1.85rem;
  border-radius: var(--mdlp-radius-pill);
  border: none;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 6px 24px rgba(124, 58, 237, 0.35), 0 6px 20px rgba(219, 39, 119, 0.28);
  transition: filter 0.15s, transform 0.15s, box-shadow 0.15s;
}
.mdlp-btn-primary:hover {
  color: #fff !important;
  text-decoration: none;
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(124, 58, 237, 0.42), 0 8px 26px rgba(219, 39, 119, 0.35);
}

/* Hero trust — white floating bar (reference) */
.mdlp-hero-trust-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0.75rem 1.25rem;
  margin: 2.5rem auto 0;
  max-width: 960px;
  padding: 1.1rem 1.35rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.07), 0 2px 8px rgba(15, 23, 42, 0.04);
}
.mdlp-hero-trust-pill {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-align: left;
  flex: 0 1 auto;
  min-width: 0;
  max-width: min(100%, 28rem);
}
.mdlp-hero-trust-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}
.mdlp-hero-trust-icon--star {
  background: var(--mdlp-gradient);
  color: #fff;
  box-shadow: 0 2px 8px rgba(168, 85, 247, 0.45);
}
.mdlp-hero-trust-icon--check {
  background: #22c55e;
  color: #fff;
  font-size: 0.75rem;
  box-shadow: 0 2px 6px rgba(34, 197, 94, 0.35);
}
.mdlp-hero-trust-icon--blue {
  background: linear-gradient(145deg, #3b82f6, #2563eb);
  color: #fff;
  font-size: 0.78rem;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
}
.mdlp-hero-trust-icon--amber {
  background: linear-gradient(145deg, #f59e0b, #d97706);
  color: #fff;
  font-size: 0.78rem;
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.35);
}
.mdlp-hero-trust-icon--indigo {
  background: linear-gradient(145deg, #6366f1, #4f46e5);
  color: #fff;
  font-size: 0.75rem;
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.35);
}
.mdlp-hero-trust-icon--slate {
  background: linear-gradient(145deg, #64748b, #475569);
  color: #fff;
  font-size: 0.75rem;
  box-shadow: 0 2px 6px rgba(71, 85, 105, 0.35);
}
.mdlp-hero-trust-txt {
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155;
  line-height: 1.35;
}
@media (max-width: 639px) {
  .mdlp-hero-trust-pill {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* Section shell */
.mdlp-section {
  padding: 4rem 0;
}
.mdlp-section .container {
  max-width: 1120px;
}
.mdlp-section-title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--mdlp-ink);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.mdlp-section-lead {
  text-align: center;
  color: var(--mdlp-muted);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.55;
}

/* Alternating section backgrounds (CMS order; hero + final CTA excluded) */
.mdlp-section--stripe-even,
.mdlp-section--stripe-odd {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.mdlp-section--stripe-even {
  background: var(--mdlp-stripe-even-bg);
  background-color: #f8fafc;
}
.mdlp-section--stripe-odd {
  background: var(--mdlp-stripe-odd-bg);
  background-color: #fafbfc;
}
.mdlp-section--stripe-even::before,
.mdlp-section--stripe-odd::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.mdlp-section--stripe-even::before {
  background: var(--mdlp-stripe-even-wash);
}
.mdlp-section--stripe-odd::before {
  background: var(--mdlp-stripe-odd-wash);
}
.mdlp-section--stripe-even .container,
.mdlp-section--stripe-odd .container {
  position: relative;
  z-index: 1;
}

.mdlp-section-soft {
  background: #f8fafc;
}

.mdlp-section-faq .mdlp-section-title {
  margin-bottom: 2.5rem;
}

/* How it works — step tiles */
.mdlp-section-hiw {
  --mdlp-hiw-card-size: 17.25rem;
  --mdlp-hiw-card-radius: 24px;
  position: relative;
}
.mdlp-section-hiw .mdlp-hiw-heading {
  font-size: clamp(1.7rem, 4.2vw, 2.125rem);
  font-weight: 800;
  letter-spacing: -0.038em;
  line-height: 1.12;
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.65rem;
  color: #0a0f1a;
}
.mdlp-section-hiw .mdlp-hiw-heading::after {
  content: "";
  display: block;
  width: 3.75rem;
  height: 4px;
  margin: 1rem auto 0;
  border-radius: 999px;
  background: var(--mdlp-gradient);
  opacity: 0.92;
}
.mdlp-steps-wrap {
  position: relative;
}
/* How it works — JS-built rows (arrows only between cards on the same visual row) */
.mdlp-hiw-dynamic-root {
  width: 100%;
}
.mdlp-hiw-dynamic-rows-host {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.85rem;
  width: 100%;
}
.mdlp-hiw-flow-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1.15rem;
  width: 100%;
}
.mdlp-hiw-flow-row--spread {
  justify-content: space-between;
  gap: 0.85rem 0.9rem;
  max-width: min(100%, calc(2 * var(--mdlp-hiw-card-size, 17.25rem) + 8.25rem));
  margin-inline: auto;
}
.mdlp-hiw-flow-row .mdlp-step-card {
  flex: 0 0 min(100%, var(--mdlp-hiw-card-size, 17rem));
  width: min(100%, var(--mdlp-hiw-card-size, 17rem));
  max-width: var(--mdlp-hiw-card-size, 17rem);
}
.mdlp-hiw-flow-row .mdlp-hiw-arrow {
  flex: 0 0 minmax(1.75rem, 4.5rem);
  max-width: 5.25rem;
}
@media (max-width: 767px) {
  .mdlp-hiw-flow-row {
    flex-wrap: wrap;
    justify-content: center;
  }
  .mdlp-hiw-flow-row .mdlp-step-card {
    flex: 0 0 min(100%, var(--mdlp-hiw-card-size, 17rem));
    max-width: var(--mdlp-hiw-card-size, 17rem);
  }
}
.mdlp-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15.5rem), 1fr));
  gap: 1.75rem;
  text-align: center;
  align-items: stretch;
}
.mdlp-steps--single-col {
  grid-template-columns: 1fr;
  justify-items: center;
}
.mdlp-steps--single-col .mdlp-step-card {
  max-width: var(--mdlp-hiw-card-size, 17rem);
  width: min(100%, var(--mdlp-hiw-card-size, 17rem));
}
/* How it works — measurement grid: 1 card per row on narrow screens, at most 3 per row on wide */
.mdlp-section-hiw .mdlp-hiw-steps-flat {
  display: grid;
  gap: 1.85rem 1.35rem;
  grid-template-columns: repeat(
    auto-fit,
    minmax(min(100%, max(var(--mdlp-hiw-card-size, 17rem), calc((100% - 2.5rem) / 3))), 1fr)
  );
  justify-items: center;
  align-items: start;
}
/* Single orphan card on its own row (e.g. 7, 10…) — full-width row, centered */
.mdlp-section-hiw .mdlp-hiw-steps-flat .mdlp-step-card:last-child:nth-child(3n + 1):not(:only-child) {
  grid-column: 1 / -1;
  max-width: var(--mdlp-hiw-card-size, 17rem);
  width: min(100%, var(--mdlp-hiw-card-size, 17rem));
  justify-self: center;
}
/* Exactly 4 steps: 3 on first row, step 4 centered in middle column (not 2+1+1) */
@media (min-width: 768px) {
  .mdlp-section-hiw .mdlp-hiw-steps-flat:has(> .mdlp-step-card:nth-child(4):last-child) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .mdlp-section-hiw .mdlp-hiw-steps-flat:has(> .mdlp-step-card:nth-child(4):last-child) > .mdlp-step-card:nth-child(4) {
    grid-column: 2 / 3;
    justify-self: center;
    max-width: var(--mdlp-hiw-card-size, 17rem);
    width: min(100%, var(--mdlp-hiw-card-size, 17rem));
    margin-inline: 0;
  }
}
@media (max-width: 767px) {
  .mdlp-section-hiw .mdlp-hiw-steps-flat:has(> .mdlp-step-card:nth-child(4):last-child) > .mdlp-step-card:nth-child(4) {
    grid-column: 1 / -1;
    justify-self: center;
    margin-inline: auto;
  }
}
/* Exactly 6 steps: two rows of three (3+3), not 2×3 column-major */
@media (min-width: 768px) {
  .mdlp-section-hiw .mdlp-hiw-steps-flat:has(> .mdlp-step-card:nth-child(6):last-child) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.mdlp-section-hiw .mdlp-hiw-steps-flat > .mdlp-step-card {
  align-self: center;
}
/* Last row of two: pin outward — under gaps when row above is full (3 cols); two-only section uses two tracks */
@media (min-width: 900px) {
  .mdlp-section-hiw .mdlp-hiw-steps-flat .mdlp-step-card:nth-child(n + 4):nth-child(3n + 1):nth-last-child(2) {
    grid-column: 1 / 2;
    justify-self: end;
    margin-inline: 0;
  }
  .mdlp-section-hiw .mdlp-hiw-steps-flat .mdlp-step-card:nth-child(n + 4):nth-child(3n + 2):last-child {
    grid-column: 3 / 4;
    justify-self: start;
    margin-inline: 0;
  }
  .mdlp-section-hiw .mdlp-hiw-steps-flat .mdlp-step-card:first-child:nth-last-child(2) {
    grid-column: 1 / 2;
    justify-self: end;
    margin-inline: 0;
  }
  .mdlp-section-hiw .mdlp-hiw-steps-flat .mdlp-step-card:first-child:nth-last-child(2) + .mdlp-step-card {
    grid-column: 2 / 3;
    justify-self: start;
    margin-inline: 0;
  }
}
.mdlp-section-hiw .mdlp-steps--single-col {
  align-items: center;
}
.mdlp-step-card {
  position: relative;
  box-sizing: border-box;
  width: min(100%, var(--mdlp-hiw-card-size, 17rem));
  max-width: var(--mdlp-hiw-card-size, 17rem);
  aspect-ratio: 1 / 1;
  height: auto;
  min-height: 0;
  margin-inline: auto;
  padding: 1.45rem 1.15rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-start;
  overflow: hidden;
  border-radius: var(--mdlp-hiw-card-radius, 24px);
  background: linear-gradient(168deg, #ffffff 0%, #fafbff 42%, #f3f4fb 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.92);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 18px 48px -28px rgba(15, 23, 42, 0.12),
    0 0 0 1px rgba(124, 58, 237, 0.04);
  transition:
    transform 0.4s cubic-bezier(0.33, 1, 0.68, 1),
    box-shadow 0.4s ease,
    border-color 0.3s ease;
}
.mdlp-section-hiw .mdlp-step-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--mdlp-hiw-card-radius, 24px) var(--mdlp-hiw-card-radius, 24px) 0 0;
  background: var(--mdlp-gradient);
  opacity: 0.5;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  transform-origin: 50% 0;
}
.mdlp-step-card:hover {
  transform: translateY(-7px);
  border-color: rgba(167, 139, 250, 0.45);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 26px 56px -26px rgba(124, 58, 237, 0.22),
    0 14px 36px -18px rgba(15, 23, 42, 0.1),
    0 0 0 1px rgba(124, 58, 237, 0.12);
}
.mdlp-section-hiw .mdlp-step-card:hover::after {
  opacity: 1;
  transform: scaleY(1.15);
}
.mdlp-steps--with-arrows {
  grid-template-columns: 1fr minmax(2.5rem, 4.75rem) 1fr minmax(2.5rem, 4.75rem) 1fr;
  align-items: center;
  gap: 1rem 0.85rem;
}
.mdlp-steps--with-arrows.mdlp-steps--pair {
  grid-template-columns: 1fr minmax(2.5rem, 4.75rem) 1fr;
  gap: 1rem 0.85rem;
}
@media (max-width: 991px) {
  .mdlp-steps--with-arrows.mdlp-steps--pair {
    grid-template-columns: 1fr minmax(1.75rem, 3.25rem) 1fr;
    gap: 0.85rem 0.45rem;
  }
}
@media (max-width: 991px) {
  .mdlp-steps--with-arrows {
    grid-template-columns: 1fr minmax(1.75rem, 3.25rem) 1fr minmax(1.75rem, 3.25rem) 1fr;
    gap: 0.85rem 0.45rem;
  }
}
@media (max-width: 767px) {
  .mdlp-steps:not(.mdlp-steps--with-arrows) {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .mdlp-steps--single-col {
    justify-items: stretch;
  }
  .mdlp-steps--with-arrows {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
  }
  .mdlp-steps--with-arrows .mdlp-hiw-arrow {
    display: none;
  }
  .mdlp-section-hiw .mdlp-steps--single-col {
    justify-items: center;
  }
}
.mdlp-step-num {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: var(--mdlp-gradient);
  color: #fff;
  font-weight: 800;
  font-size: 1.28rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 0 0.9rem;
  box-shadow:
    0 6px 20px rgba(124, 58, 237, 0.42),
    0 0 0 3px rgba(255, 255, 255, 0.95),
    0 0 0 5px rgba(124, 58, 237, 0.11);
}
.mdlp-hiw-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  opacity: 0.32;
  transform: scale(0.96);
  transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1), transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.45s ease;
  filter: drop-shadow(0 0 0 transparent);
  pointer-events: none;
}
.mdlp-hiw-arrow-svg {
  width: 100%;
  max-width: 5.25rem;
  height: 30px;
  overflow: visible;
}
.mdlp-hiw-arrow-path {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 0.75s cubic-bezier(0.33, 1, 0.68, 1);
}
.mdlp-hiw-arrow.mdlp-hiw-arrow--active {
  opacity: 1;
  transform: scale(1.02);
  filter: drop-shadow(0 4px 12px rgba(124, 58, 237, 0.5)) drop-shadow(0 2px 10px rgba(219, 39, 119, 0.28));
}
.mdlp-hiw-arrow.mdlp-hiw-arrow--active .mdlp-hiw-arrow-path {
  stroke-dashoffset: 0;
}
.mdlp-section-hiw .mdlp-step-title {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--mdlp-ink);
  margin: 0 0 0.5rem;
  line-height: 1.28;
  width: 100%;
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.mdlp-section-hiw .mdlp-step-desc {
  color: #475569;
  font-size: 0.84375rem;
  line-height: 1.58;
  margin: 0;
  width: 100%;
  text-align: center;
  min-height: 0;
  flex: 1 1 auto;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

/* Trust band — elevated proof panel + chips */
.mdlp-trust-band {
  position: relative;
  border-top: none;
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  overflow: hidden;
}
.mdlp-trust-inner {
  position: relative;
  z-index: 1;
}
.mdlp-trust-title {
  margin-bottom: 1rem;
}
.mdlp-trust-stats-panel {
  margin-top: 0.75rem;
  padding: 2.1rem 1.25rem 2rem;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.96) 0%, rgba(250, 250, 255, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 26px;
  box-shadow:
    0 0 0 1px rgba(226, 232, 240, 0.75) inset,
    0 1px 2px rgba(15, 23, 42, 0.05),
    0 20px 52px -30px rgba(15, 23, 42, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.mdlp-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem 2.5rem;
  text-align: center;
  width: 100%;
}
.mdlp-stat-cell {
  position: relative;
  padding: 0.35rem 0.75rem;
  flex: 1 1 9.5rem;
  max-width: 22rem;
  min-width: min(100%, 8.5rem);
}
@media (min-width: 768px) {
  .mdlp-stat-cell:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 3.25rem;
    background: linear-gradient(180deg, transparent 0%, rgba(203, 213, 225, 0.9) 20%, rgba(203, 213, 225, 0.9) 80%, transparent 100%);
  }
}
@media (max-width: 767px) {
  .mdlp-stats {
    flex-direction: column;
    align-items: center;
    gap: 1.35rem;
  }
  .mdlp-stat-cell {
    flex: 0 1 auto;
    max-width: 24rem;
    width: 100%;
  }
  .mdlp-stat-cell:not(:last-child)::after {
    display: none;
  }
}
.mdlp-stat-val {
  font-size: clamp(2rem, 4.2vw, 2.4rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  min-height: 2.65rem;
  line-height: 1.1;
  background: var(--mdlp-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  -webkit-text-fill-color: transparent;
}
.mdlp-stat-lbl {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #64748b;
  line-height: 1.35;
  max-width: 12rem;
  margin-left: auto;
  margin-right: auto;
}

/* Trust stats — layout by visible count (1 / 2 / 3): value + label one row, larger type */
.mdlp-stats.mdlp-stats--n1,
.mdlp-stats.mdlp-stats--n2,
.mdlp-stats.mdlp-stats--n3 {
  align-items: center;
}
.mdlp-stats.mdlp-stats--n1 .mdlp-stat-cell,
.mdlp-stats.mdlp-stats--n2 .mdlp-stat-cell,
.mdlp-stats.mdlp-stats--n3 .mdlp-stat-cell {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem 1rem;
  text-align: left;
}
.mdlp-stats.mdlp-stats--n1 .mdlp-stat-lbl,
.mdlp-stats.mdlp-stats--n2 .mdlp-stat-lbl,
.mdlp-stats.mdlp-stats--n3 .mdlp-stat-lbl {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}
.mdlp-stats.mdlp-stats--n1 .mdlp-stat-val,
.mdlp-stats.mdlp-stats--n2 .mdlp-stat-val {
  font-size: clamp(2.2rem, 5vw, 2.75rem);
  min-height: 0;
  flex-shrink: 0;
}
.mdlp-stats.mdlp-stats--n1 .mdlp-stat-lbl,
.mdlp-stats.mdlp-stats--n2 .mdlp-stat-lbl {
  font-size: 0.84rem;
  letter-spacing: 0.065em;
  max-width: min(16rem, 52vw);
  line-height: 1.3;
}
.mdlp-stats.mdlp-stats--n3 .mdlp-stat-val {
  font-size: clamp(1.75rem, 3.8vw, 2.2rem);
  min-height: 0;
  flex-shrink: 0;
}
.mdlp-stats.mdlp-stats--n3 .mdlp-stat-lbl {
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  max-width: min(10rem, 34vw);
  line-height: 1.3;
}
.mdlp-stats.mdlp-stats--n1 .mdlp-stat-cell {
  flex: 0 1 auto;
  max-width: 36rem;
}
.mdlp-stats.mdlp-stats--n2 .mdlp-stat-cell {
  flex: 1 1 40%;
  max-width: 28rem;
  min-width: min(100%, 15.5rem);
}
.mdlp-stats.mdlp-stats--n3 .mdlp-stat-cell {
  flex: 1 1 26%;
  max-width: 17.5rem;
  min-width: 0;
  padding-left: 0.45rem;
  padding-right: 0.45rem;
}
@media (min-width: 768px) {
  .mdlp-stats.mdlp-stats--n2 .mdlp-stat-cell:not(:last-child)::after,
  .mdlp-stats.mdlp-stats--n3 .mdlp-stat-cell:not(:last-child)::after {
    height: 2.85rem;
  }
}

.mdlp-trust-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.65rem 0.75rem;
  margin-top: 2rem;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.mdlp-trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem 0.55rem 0.55rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #334155;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 999px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  max-width: min(100%, 32rem);
  min-width: 0;
}
.mdlp-trust-chip:hover {
  border-color: rgba(167, 139, 250, 0.4);
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.1);
  transform: translateY(-1px);
}
.mdlp-trust-chip-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  color: #fff;
}
.mdlp-trust-chip-icon--star {
  background: var(--mdlp-gradient);
  box-shadow: 0 2px 6px rgba(168, 85, 247, 0.4);
}
.mdlp-trust-chip-icon--check {
  background: linear-gradient(145deg, #22c55e 0%, #16a34a 100%);
  box-shadow: 0 2px 6px rgba(34, 197, 94, 0.35);
}
.mdlp-trust-chip-icon--blue {
  background: linear-gradient(145deg, #3b82f6, #2563eb);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
}
.mdlp-trust-chip-icon--amber {
  background: linear-gradient(145deg, #f59e0b, #d97706);
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.35);
}
.mdlp-trust-chip-icon--indigo {
  background: linear-gradient(145deg, #6366f1, #4f46e5);
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.35);
}
.mdlp-trust-chip-icon--slate {
  background: linear-gradient(145deg, #64748b, #475569);
  box-shadow: 0 2px 6px rgba(71, 85, 105, 0.35);
}
.mdlp-trust-chip-txt {
  padding-right: 0.15rem;
  text-align: left;
  min-width: 0;
  overflow-wrap: anywhere;
}

/* Featured + Why + Testimonials — typography */
.mdlp-section-featured .mdlp-section-title {
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
}
.mdlp-section-featured .mdlp-section-title + .mdlp-services-grid {
  margin-top: 1.65rem;
}
.mdlp-section-why .mdlp-section-title {
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
}
.mdlp-section-why .mdlp-section-title + .mdlp-services-grid {
  margin-top: 1.65rem;
}
.mdlp-section-testimonials .mdlp-section-title {
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
}
.mdlp-section-testimonials .mdlp-section-title + .mdlp-testimonials-grid {
  margin-top: 1.65rem;
}
.mdlp-section-featured .mdlp-section-lead {
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.65rem;
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.65;
}

/* Featured services grid — staggered rows (3 / 2 / 3 / …) on desktop, stack on small screens */
.mdlp-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 17.5rem), 1fr));
  gap: 1.35rem 1.2rem;
  align-items: stretch;
}
.mdlp-services-grid--stagger {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  width: 100%;
}
.mdlp-services-row {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 1.2rem;
  row-gap: 1.35rem;
  width: 100%;
}
.mdlp-services-row--cols-3 > .mdlp-service-card {
  grid-column: span 4;
}
/* Two cards sit in the “gaps” between the three above (centered band) */
.mdlp-services-row--cols-2 > .mdlp-service-card:nth-child(1) {
  grid-column: 3 / span 4;
}
.mdlp-services-row--cols-2 > .mdlp-service-card:nth-child(2) {
  grid-column: 7 / span 4;
}
.mdlp-services-row--cols-1 > .mdlp-service-card {
  grid-column: 1 / -1;
  max-width: 22rem;
  width: 100%;
  justify-self: center;
}
/* Why choose us — same 12-col row placement as featured service cards */
.mdlp-section-why .mdlp-services-row--cols-3 > .mdlp-info-card {
  grid-column: span 4;
}
.mdlp-section-why .mdlp-services-row--cols-2 > .mdlp-info-card:nth-child(1) {
  grid-column: 3 / span 4;
}
.mdlp-section-why .mdlp-services-row--cols-2 > .mdlp-info-card:nth-child(2) {
  grid-column: 7 / span 4;
}
.mdlp-section-why .mdlp-services-row--cols-1 > .mdlp-info-card {
  grid-column: 1 / -1;
  max-width: min(100%, 26rem);
  width: 100%;
  justify-self: center;
}
@media (max-width: 639px) {
  .mdlp-services-row {
    grid-template-columns: 1fr;
  }
  .mdlp-services-row--cols-2 > .mdlp-service-card:nth-child(1),
  .mdlp-services-row--cols-2 > .mdlp-service-card:nth-child(2),
  .mdlp-services-row--cols-3 > .mdlp-service-card {
    grid-column: 1 / -1;
    max-width: none;
    justify-self: stretch;
  }
  .mdlp-services-row--cols-1 > .mdlp-service-card {
    max-width: none;
  }
  .mdlp-section-why .mdlp-services-row--cols-2 > .mdlp-info-card:nth-child(1),
  .mdlp-section-why .mdlp-services-row--cols-2 > .mdlp-info-card:nth-child(2),
  .mdlp-section-why .mdlp-services-row--cols-3 > .mdlp-info-card {
    grid-column: 1 / -1;
    max-width: none;
    justify-self: stretch;
  }
  .mdlp-section-why .mdlp-services-row--cols-1 > .mdlp-info-card {
    max-width: none;
  }
}
.mdlp-service-card {
  position: relative;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 18px;
  padding: 1.4rem 1.35rem 1.35rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 10px 36px -24px rgba(15, 23, 42, 0.14);
  transition: transform 0.35s cubic-bezier(0.33, 1, 0.68, 1), box-shadow 0.35s ease, border-color 0.25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.mdlp-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--mdlp-gradient);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.mdlp-service-card:hover {
  border-color: rgba(167, 139, 250, 0.55);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 18px 48px -22px rgba(124, 58, 237, 0.2),
    0 8px 28px -12px rgba(15, 23, 42, 0.12);
  transform: translateY(-5px);
}
.mdlp-service-card:hover::before {
  opacity: 1;
}
.mdlp-service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.mdlp-service-card-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--mdlp-ink);
  line-height: 1.32;
  letter-spacing: -0.02em;
  margin: 0;
  flex: 1;
  min-width: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.mdlp-service-card-title a {
  color: inherit;
  text-decoration: none;
}
.mdlp-service-card-title a:hover {
  color: #7c3aed;
}
.mdlp-service-badge {
  flex-shrink: 0;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #6d28d9;
  background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  white-space: nowrap;
  border: 1px solid rgba(167, 139, 250, 0.35);
}
.mdlp-service-seller {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}
.mdlp-service-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(226, 232, 240, 1), 0 4px 12px rgba(15, 23, 42, 0.08);
}
.mdlp-service-seller-meta {
  flex: 1;
  min-width: 0;
}
.mdlp-service-seller-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--mdlp-ink);
}
.mdlp-service-seller-name a {
  color: inherit;
  text-decoration: none;
}
.mdlp-service-stars {
  color: var(--mdlp-star);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  filter: drop-shadow(0 1px 1px rgba(250, 204, 21, 0.25));
}
.mdlp-service-stars .far.fa-star {
  color: #e2e8f0;
}
.mdlp-service-stars .mdlp-rating-num {
  color: #64748b;
  margin-left: 0.35rem;
  font-weight: 600;
  font-size: 0.8rem;
}
.mdlp-service-card-bottom {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(241, 245, 249, 0.95);
}
.mdlp-service-price-lbl {
  font-size: 0.7rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.mdlp-service-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--mdlp-ink);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.mdlp-btn-service {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--mdlp-gradient);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.8125rem;
  padding: 0.58rem 1.15rem;
  border-radius: var(--mdlp-radius-pill);
  text-decoration: none;
  white-space: nowrap;
  border: none;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.32), 0 3px 10px rgba(219, 39, 119, 0.2);
  transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.mdlp-btn-service:hover {
  color: #fff !important;
  text-decoration: none;
  filter: brightness(1.07);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(124, 58, 237, 0.42), 0 4px 14px rgba(219, 39, 119, 0.28);
}

/* Why choose + similar — fluid card columns */
.mdlp-cards-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16.25rem), 1fr));
  gap: 1.5rem;
  align-items: stretch;
}
@media (max-width: 639px) {
  .mdlp-cards-3 {
    grid-template-columns: 1fr;
  }
}
.mdlp-section-why .mdlp-info-card {
  position: relative;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 20px;
  padding: 1.75rem 1.45rem 1.7rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  height: 100%;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 12px 40px -22px rgba(15, 23, 42, 0.12);
  text-align: left;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.33, 1, 0.68, 1), box-shadow 0.35s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}
.mdlp-section-why .mdlp-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--mdlp-gradient);
  opacity: 0.55;
  transform: scaleX(0.35);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.3s ease;
}
.mdlp-section-why .mdlp-info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(167, 139, 250, 0.45);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 20px 50px -24px rgba(124, 58, 237, 0.16),
    0 10px 28px -14px rgba(15, 23, 42, 0.1);
}
.mdlp-section-why .mdlp-info-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}
.mdlp-section-why .mdlp-info-card h3 {
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
  letter-spacing: -0.02em;
  background: var(--mdlp-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.mdlp-section-why .mdlp-info-card p {
  color: #64748b;
  margin: 0;
  line-height: 1.6;
  font-size: 0.9375rem;
  flex: 1 1 auto;
  min-height: 0;
  overflow-wrap: anywhere;
}

/* Testimonials — row grid (max 4 per row; 5 → 4+1; 2 centered; 1 centered) */
.mdlp-testimonials-grid.mdlp-testimonials-grid--rows {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.mdlp-testimonials-grid.mdlp-testimonials-grid--compact {
  gap: 0.9rem;
}
.mdlp-testimonials-row {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 1rem;
  row-gap: 0.9rem;
  width: 100%;
  align-items: stretch;
}
.mdlp-testimonials-row--cols-4 > .mdlp-testimonial-card {
  grid-column: span 3;
}
.mdlp-testimonials-row--cols-3 > .mdlp-testimonial-card {
  grid-column: span 4;
}
.mdlp-testimonials-row--cols-2 > .mdlp-testimonial-card:nth-child(1) {
  grid-column: 3 / span 4;
}
.mdlp-testimonials-row--cols-2 > .mdlp-testimonial-card:nth-child(2) {
  grid-column: 7 / span 4;
}
.mdlp-testimonials-row--cols-1 > .mdlp-testimonial-card {
  grid-column: 1 / -1;
  max-width: 22rem;
  width: 100%;
  justify-self: center;
}
@media (max-width: 991px) and (min-width: 640px) {
  .mdlp-testimonials-row--cols-4 > .mdlp-testimonial-card {
    grid-column: span 6;
  }
}
@media (max-width: 639px) {
  .mdlp-testimonials-row {
    grid-template-columns: 1fr;
  }
  .mdlp-testimonials-row--cols-2 > .mdlp-testimonial-card:nth-child(1),
  .mdlp-testimonials-row--cols-2 > .mdlp-testimonial-card:nth-child(2),
  .mdlp-testimonials-row--cols-3 > .mdlp-testimonial-card,
  .mdlp-testimonials-row--cols-4 > .mdlp-testimonial-card {
    grid-column: 1 / -1;
    max-width: none;
    justify-self: stretch;
  }
  .mdlp-testimonials-row--cols-1 > .mdlp-testimonial-card {
    max-width: none;
  }
}
.mdlp-section-testimonials--compact .mdlp-testimonial-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  width: auto;
  max-width: none;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 14px;
  padding: 1rem 1rem 0.95rem 1.05rem;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.97) 0%, rgba(248, 250, 252, 0.94) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.035),
    0 10px 28px -18px rgba(15, 23, 42, 0.12);
  text-align: left;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1), box-shadow 0.3s ease, border-color 0.25s ease;
}
.mdlp-section-testimonials--compact .mdlp-testimonial-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 14px 0 0 14px;
  background: var(--mdlp-gradient);
  opacity: 0.5;
  pointer-events: none;
}
.mdlp-section-testimonials--compact .mdlp-testimonial-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 80% at 100% 0%, rgba(124, 58, 237, 0.07), transparent 55%);
  pointer-events: none;
  opacity: 0.85;
}
.mdlp-section-testimonials--compact .mdlp-testimonial-card:hover {
  transform: translateY(-3px);
  border-color: rgba(167, 139, 250, 0.38);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 14px 36px -20px rgba(124, 58, 237, 0.18),
    0 8px 22px -14px rgba(15, 23, 42, 0.1);
}
.mdlp-section-testimonials--compact .mdlp-testimonial-card:hover::before {
  opacity: 0.85;
}
.mdlp-section-testimonials--compact .mdlp-testimonial-stars {
  position: relative;
  z-index: 1;
  display: inline-flex;
  gap: 0.12rem;
  color: #f59e0b;
  margin-bottom: 0.55rem;
  font-size: 0.68rem;
  letter-spacing: 0.02em;
  filter: drop-shadow(0 1px 1px rgba(245, 158, 11, 0.25));
}
.mdlp-section-testimonials--compact .mdlp-testimonial-quote {
  position: relative;
  z-index: 1;
  font-style: italic;
  color: #475569;
  font-size: 0.8125rem;
  line-height: 1.55;
  margin: 0 0 0.75rem;
  flex: 1 1 auto;
  min-height: 0;
}
.mdlp-section-testimonials--compact .mdlp-testimonial-quote-mark {
  font-style: normal;
  font-weight: 800;
  color: rgba(124, 58, 237, 0.35);
  margin-right: 0.06em;
}
.mdlp-section-testimonials--compact .mdlp-testimonial-quote-mark--end {
  margin-right: 0;
  margin-left: 0.06em;
}
.mdlp-section-testimonials--compact .mdlp-testimonial-meta {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(241, 245, 249, 0.95);
  padding-top: 0.65rem;
  margin-top: auto;
}
.mdlp-section-testimonials--compact .mdlp-testimonial-author {
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--mdlp-ink);
  letter-spacing: -0.02em;
}
.mdlp-section-testimonials--compact .mdlp-testimonial-role {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-top: 0.18rem;
}

@media (prefers-reduced-motion: reduce) {
  .mdlp-step-card,
  .mdlp-step-card:hover,
  .mdlp-section-hiw .mdlp-step-card::after,
  .mdlp-section-hiw .mdlp-step-card:hover::after,
  .mdlp-trust-chip:hover,
  .mdlp-service-card,
  .mdlp-service-card:hover,
  .mdlp-btn-service:hover,
  .mdlp-section-why .mdlp-info-card,
  .mdlp-section-why .mdlp-info-card:hover,
  .mdlp-section-testimonials .mdlp-testimonial-card,
  .mdlp-section-testimonials .mdlp-testimonial-card:hover {
    transform: none !important;
  }
  .mdlp-service-card,
  .mdlp-service-card:hover,
  .mdlp-section-why .mdlp-info-card,
  .mdlp-section-why .mdlp-info-card:hover,
  .mdlp-section-testimonials .mdlp-testimonial-card,
  .mdlp-section-testimonials .mdlp-testimonial-card:hover {
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
  }
  .mdlp-service-card::before,
  .mdlp-service-card:hover::before {
    transition: none !important;
  }
  .mdlp-section-why .mdlp-info-card::before,
  .mdlp-section-why .mdlp-info-card:hover::before {
    transition: none !important;
    transform: scaleX(1) !important;
    opacity: 0.65 !important;
  }
  .mdlp-section-testimonials--compact .mdlp-testimonial-card::before,
  .mdlp-section-testimonials--compact .mdlp-testimonial-card:hover::before {
    transition: none !important;
    opacity: 0.65 !important;
  }
  .mdlp-guarantee-item,
  .mdlp-guarantee-item:hover {
    transform: none !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
  }
  .mdlp-faq-icon,
  .mdlp-faq-icon::after {
    transition: none !important;
  }
  .mdlp-faq-q:not(.collapsed) .mdlp-faq-icon::after {
    transform: translate(-50%, -50%) scaleY(0) !important;
    opacity: 0 !important;
  }
  .mdlp-step-card,
  .mdlp-step-card:hover {
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
  }
  .mdlp-section-hiw .mdlp-step-card::after,
  .mdlp-section-hiw .mdlp-step-card:hover::after {
    transition: none !important;
    opacity: 0.65 !important;
    transform: none !important;
  }
}

/* Guarantee — premium glass panel + lift cards */
.mdlp-guarantee-wrap {
  position: relative;
  border-radius: 26px;
  padding: clamp(2rem, 4vw, 2.85rem) clamp(1.25rem, 3vw, 2rem) clamp(2rem, 4vw, 2.65rem);
  background: linear-gradient(168deg, rgba(255, 255, 255, 0.96) 0%, rgba(252, 250, 255, 0.9) 42%, rgba(248, 250, 252, 0.92) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(233, 213, 255, 0.55);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 22px 56px -32px rgba(124, 58, 237, 0.2),
    0 10px 32px -12px rgba(15, 23, 42, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.mdlp-guarantee-wrap > .mdlp-section-title {
  margin-bottom: 2rem;
}
.mdlp-guarantee-body {
  text-align: center;
  color: #64748b;
  max-width: 36rem;
  margin: 0 auto 2.15rem;
  line-height: 1.65;
  font-size: 0.98rem;
}
.mdlp-guarantee-list--stack {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.85rem;
  max-width: 32rem;
  margin: 0 auto;
}
/* Guarantee rows: same 12-col banding as dynamic LP sections (max 3 items per row from PHP chunking). */
.mdlp-guarantee-list--rows {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  width: 100%;
  max-width: 100%;
}
.mdlp-guarantee-row {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 1.1rem;
  row-gap: 1.1rem;
  width: 100%;
  align-items: stretch;
}
.mdlp-guarantee-row--cols-3 > .mdlp-guarantee-item {
  grid-column: span 4;
}
.mdlp-guarantee-row--cols-2 > .mdlp-guarantee-item:nth-child(1) {
  grid-column: 3 / span 4;
}
.mdlp-guarantee-row--cols-2 > .mdlp-guarantee-item:nth-child(2) {
  grid-column: 7 / span 4;
}
.mdlp-guarantee-row--cols-1 > .mdlp-guarantee-item {
  grid-column: 1 / -1;
  max-width: 32rem;
  width: 100%;
  justify-self: center;
}
/* Legacy class — not used by guarantee.blade.php; kept for cached HTML / safety */
.mdlp-guarantee-list--grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 14.5rem), 1fr));
  gap: 1.1rem;
  max-width: 100%;
  align-items: stretch;
}
@media (max-width: 639px) {
  .mdlp-guarantee-list--grid {
    grid-template-columns: 1fr;
  }
  .mdlp-guarantee-row {
    grid-template-columns: 1fr;
  }
  .mdlp-guarantee-row--cols-2 > .mdlp-guarantee-item:nth-child(1),
  .mdlp-guarantee-row--cols-2 > .mdlp-guarantee-item:nth-child(2),
  .mdlp-guarantee-row--cols-3 > .mdlp-guarantee-item {
    grid-column: 1 / -1;
    max-width: none;
    justify-self: stretch;
  }
  .mdlp-guarantee-row--cols-1 > .mdlp-guarantee-item {
    max-width: none;
  }
}
.mdlp-guarantee-item {
  position: relative;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 16px;
  padding: 1rem 1.2rem 1rem 1.15rem;
  font-size: 0.9375rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 8px 26px -18px rgba(15, 23, 42, 0.12);
  color: var(--mdlp-ink);
  width: 100%;
  letter-spacing: -0.01em;
  line-height: 1.4;
  transition: transform 0.32s cubic-bezier(0.33, 1, 0.68, 1), box-shadow 0.32s ease, border-color 0.25s ease;
  overflow: hidden;
}
.mdlp-guarantee-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--mdlp-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.mdlp-guarantee-item:hover {
  transform: translateY(-4px);
  border-color: rgba(167, 139, 250, 0.5);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 16px 40px -22px rgba(124, 58, 237, 0.18),
    0 10px 28px -14px rgba(15, 23, 42, 0.1);
}
.mdlp-guarantee-item:hover::before {
  opacity: 1;
}
.mdlp-guarantee-list--grid .mdlp-guarantee-item,
.mdlp-guarantee-list--rows .mdlp-guarantee-item {
  width: auto;
}
.mdlp-guarantee-check {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #34d399 0%, #16a34a 100%);
  color: #fff;
  font-size: 0.68rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-weight: 800;
  box-shadow:
    0 2px 8px rgba(34, 197, 94, 0.38),
    0 0 0 3px rgba(34, 197, 94, 0.1);
}
.mdlp-guarantee-item .mdlp-trust-chip-icon.mdlp-guarantee-item-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  font-size: 0.72rem;
}
.mdlp-guarantee-item-txt {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
  overflow-wrap: anywhere;
}
.mdlp-guarantee-list--stack .mdlp-guarantee-check {
  width: 2rem;
  height: 2rem;
  font-size: 0.68rem;
  background: linear-gradient(145deg, #34d399 0%, #059669 100%);
}

/* FAQ — premium accordion */
.mdlp-faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.mdlp-faq-item {
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 16px;
  margin-bottom: 0.85rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 10px 32px -22px rgba(15, 23, 42, 0.1);
  transition: border-color 0.28s ease, box-shadow 0.28s ease;
}
.mdlp-faq-item:hover {
  border-color: rgba(199, 210, 254, 0.95);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 14px 36px -20px rgba(124, 58, 237, 0.12);
}
.mdlp-faq-item.mdlp-faq-open {
  border-color: rgba(167, 139, 250, 0.55);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 16px 42px -22px rgba(124, 58, 237, 0.2),
    0 0 0 1px rgba(167, 139, 250, 0.22);
}
.mdlp-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 1.15rem 1.25rem 1.15rem 1.35rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--mdlp-ink);
  cursor: pointer;
  letter-spacing: -0.02em;
  line-height: 1.35;
  transition: background 0.22s ease, color 0.22s ease;
}
.mdlp-faq-q:hover {
  background: linear-gradient(90deg, rgba(245, 243, 255, 0.65) 0%, rgba(255, 255, 255, 0) 55%);
}
.mdlp-faq-item.mdlp-faq-open .mdlp-faq-q {
  background: linear-gradient(90deg, rgba(245, 243, 255, 0.85) 0%, rgba(253, 242, 248, 0.35) 100%);
}
.mdlp-faq-q:focus {
  outline: none;
}
.mdlp-faq-q:focus-visible {
  outline: 2px solid rgba(124, 58, 237, 0.55);
  outline-offset: -2px;
}
.mdlp-faq-q-text {
  flex: 1;
  min-width: 0;
}
.mdlp-faq-icon {
  flex-shrink: 0;
  width: 2.125rem;
  height: 2.125rem;
  border-radius: 10px;
  position: relative;
  background: rgba(245, 243, 255, 0.95);
  border: 1px solid rgba(167, 139, 250, 0.38);
  transition: transform 0.35s cubic-bezier(0.33, 1, 0.68, 1), background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.12);
}
.mdlp-faq-icon::before,
.mdlp-faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 1px;
  background: var(--mdlp-gradient);
}
.mdlp-faq-icon::before {
  width: 11px;
  height: 2px;
}
.mdlp-faq-icon::after {
  width: 2px;
  height: 11px;
  transition: transform 0.32s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.22s ease;
}
.mdlp-faq-q:not(.collapsed) .mdlp-faq-icon {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(192, 132, 252, 0.55);
  box-shadow: 0 2px 12px rgba(124, 58, 237, 0.22);
}
.mdlp-faq-q:not(.collapsed) .mdlp-faq-icon::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}
.mdlp-faq-a {
  padding: 0 1.35rem 1.25rem;
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.62;
  border-top: 1px solid rgba(241, 245, 249, 0.95);
  padding-top: 1rem;
  margin-top: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(248, 250, 252, 0.35) 100%);
}

/* Final CTA */
.mdlp-final-cta {
  background: var(--mdlp-navy);
  padding: 4rem 0;
  text-align: center;
}
.mdlp-final-cta h2 {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.mdlp-final-cta .mdlp-hero-sub {
  color: #94a3b8;
}

/* Footer */
.mdlp-site-footer {
  background: #fff;
  border-top: 1px solid var(--mdlp-border);
  padding: 1.75rem 0;
}
.mdlp-site-footer .container {
  max-width: 1120px;
}
.mdlp-footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.mdlp-footer-copy {
  font-size: 0.8rem;
  color: #94a3b8;
}

/* Preview banner */
.mdlp-preview-bar {
  background: #fef3c7;
  color: #92400e;
  text-align: center;
  padding: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
}
