.breadcrumbs,
.breadcrumbs-v1 {
  display: none !important;
}

.pd-hero,
.pd-hero *:not(i),
.pd-hero-image,
.pd-hero-image *,
.pd-main,
.pd-main *:not(i) {
  box-sizing: border-box;
  font-family:
    "DM Sans",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

/* ============================================
   HERO - Keep as-is
============================================ */
.pd-hero {
  position: relative;
  background: #fff;
  padding: 5.5rem 0 9rem;
}

.pd-hero::before {
  content: "";
  position: absolute;
  top: -180px;
  left: -120px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 252, 0, 0.4) 0%,
    rgba(255, 214, 10, 0.16) 36%,
    rgba(255, 252, 0, 0) 74%
  );
  pointer-events: none;
}

.pd-hero::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -170px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(76, 201, 240, 0.34) 0%,
    rgba(76, 201, 240, 0.12) 38%,
    rgba(76, 201, 240, 0) 76%
  );
  pointer-events: none;
}

.pd-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.pd-eyebrow,
.pd-kicker {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #111827;
  margin-bottom: 1rem;
}

.pd-title {
  font-size: clamp(3.4rem, 8vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.03;
  color: #0f172a;
  margin: 0 0 1.25rem;
}

.pd-subtitle {
  max-width: 760px;
  margin: 0;
  font-size: 21px;
  line-height: 1.72;
  color: #4b5563;
}

.pd-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.pd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none !important;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.pd-btn:hover {
  transform: translateY(-2px);
}

.pd-btn-dark {
  background: #111827;
  color: #fff;
  box-shadow: 0 16px 30px rgba(17, 24, 39, 0.14);
}

.pd-btn-dark:hover {
  color: #fff;
  background: #0f172a;
}

.pd-btn-light {
  background: #fffc00;
  color: #111827;
  box-shadow: 0 16px 30px rgba(255, 214, 10, 0.2);
}

.pd-btn-light:hover {
  color: #111827;
  background: #fff35c;
}

.pd-btn-ghost {
  background: #fff;
  color: #111827;
  border: 1px solid rgba(17, 24, 39, 0.14);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.pd-btn-ghost:hover {
  color: #111827;
  background: #f8fafc;
}

/* ============================================
   WAVE DIVIDERS
============================================ */
.pd-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  z-index: 5;
  line-height: 0;
  pointer-events: none;
}

.pd-wave svg {
  display: block;
  width: 100%;
  height: 60px;
}

.pd-wave-hero svg {
  height: 70px;
}

@media (min-width: 768px) {
  .pd-wave svg {
    height: 80px;
  }
  .pd-wave-hero svg {
    height: 100px;
  }
}

@media (min-width: 1200px) {
  .pd-wave svg {
    height: 100px;
  }
  .pd-wave-hero svg {
    height: 120px;
  }
}

/* ============================================
   SNAP SECTIONS
============================================ */
.pd-snap-section {
  position: relative;
  background: #fff;
  padding: 4rem 0 6rem;
}

/* ============================================
   IMAGE FRAME - Natural size + stack effect
============================================ */
.pd-snap-image {
  text-align: center;
  background: #f8fafc;
}

.pd-img-frame {
  display: inline-block;
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  z-index: 1;
}

.pd-img-frame::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  bottom: 10px;
  width: 94%;
  margin: 0 auto;
  background: #bfdbfe;
  border-radius: 22px;
  z-index: -1;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.pd-img-frame::after {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  bottom: 20px;
  width: 88%;
  margin: 0 auto;
  background: #c4b5fd;
  border-radius: 22px;
  z-index: -2;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.pd-img-frame:hover::before {
  transform: translateY(5px);
}

.pd-img-frame:hover::after {
  transform: translateY(9px);
}

.pd-img-frame img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.pd-img-frame:hover img {
  transform: translateY(-6px);
}

/* ============================================
   TEXT BLOCK - Centered content
============================================ */
.pd-text-block {
  max-width: 720px;
  margin: 0 auto;
}

.pd-section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #0f172a;
  margin: 0 0 1.5rem;
}

.pd-copy-body {
  color: #4b5563;
}

.pd-paragraph,
.pd-copy-body p {
  font-size: 18px;
  line-height: 1.85;
  margin: 0 0 1rem;
  color: #4b5563;
}

.pd-copy-body a {
  color: #0f62fe;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================
   FEATURES - Clean, minimal list
============================================ */
.pd-feature-list {
  max-width: 720px;
  margin: 0 auto;
  columns: 2;
  column-gap: 2rem;
}

.pd-feature-item {
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
  font-size: 17px;
  line-height: 1.55;
  color: #374151;
  break-inside: avoid;
}

/* ============================================
   CTA - Full width amarillo snap
============================================ */
.pd-snap-cta {
  position: relative;
  background: #fffc00;
  padding: 5.5rem 0;
  text-align: center;
}

.pd-snap-cta h2 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #000;
  margin: 0 0 1rem;
}

.pd-snap-cta p {
  font-size: 19px;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.pd-snap-cta .pd-actions {
  justify-content: center;
}

.pd-cta-btn-dark {
  background: #000;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.pd-cta-btn-dark:hover {
  background: #111;
  color: #fff;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.2);
}

.pd-cta-btn-outline {
  background: transparent;
  color: #000;
  border: 2px solid rgba(0, 0, 0, 0.15);
}

.pd-cta-btn-outline:hover {
  color: #000;
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.3);
}

/* ============================================
   SCROLL ANIMATIONS - solo opacidad en secciones
============================================ */
.pd-anim {
  opacity: 1;
  transition: opacity 0.7s ease;
}

.js-pd-enabled .pd-anim {
  opacity: 0;
}

.js-pd-enabled .pd-anim.pd-visible {
  opacity: 1;
}

.pd-anim > .container {
  transform: none;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.js-pd-enabled .pd-anim > .container {
  transform: translateY(30px);
}

.js-pd-enabled .pd-anim.pd-visible > .container {
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 767.98px) {
  .pd-hero {
    padding: 4.3rem 0 7rem;
  }
  .pd-title {
    font-size: 3rem;
  }
  .pd-subtitle {
    font-size: 18px;
  }
  .pd-snap-section {
    padding: 3rem 0 5rem;
  }
  .pd-img-frame img {
    border-radius: 14px;
  }
  .pd-img-frame::before,
  .pd-img-frame::after {
    border-radius: 16px;
  }
  .pd-feature-list {
    columns: 1;
  }
  .pd-snap-cta {
    padding: 4rem 0;
  }
  .pd-snap-cta h2 {
    line-height: 1.05;
  }
  .pd-snap-cta p {
    font-size: 17px;
  }
  .pd-actions .pd-btn {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .pd-title {
    font-size: 2.5rem;
  }
  .pd-section-title {
    font-size: 1.5rem;
  }
}
