.rps-wrapper {
  width: 100%;
  padding: 40px 10px;
  background: #fff;
  box-sizing: border-box;
}

/* Header */
.rps-header {
  text-align: center;
  margin-bottom: 48px;
}

.rps-eyebrow-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
}

.rps-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #666666;
}

.rps-eyebrow-line {
  display: block;
  width: 60px;
  height: 2px;
  background: #FF3B0A;
}
p.rps-step-desc {
    padding: 0 15px;
    line-height: 17px;
    color: #666666;
}

.rps-heading {
  font-size: 32px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.25;
  margin: 0 0 14px;
  padding: 0;
}

.rps-subheading {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Steps grid */
/* Steps grid — full bleed, no extra gap at edges */
.rps-steps {
  display: grid;
  grid-template-columns: repeat( var(--rps-cols, 6), 1fr );
  align-items: start;
  width: 100%;
}

/* Each step cell */
.rps-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* padding-right: 8px; */
  padding-left: 0;
  box-sizing: border-box;
}

/* FIX 1: First step — flush left, no left gap */
.rps-step:first-child {
  padding-left: 0 ;
  
}

/* FIX 1: Last step — flush right, no right gap */
.rps-step:last-child {
  padding-right: 0 ;
  padding-left: 0 ;
}

/* Circle row — circle + dashed line */
.rps-circle-row {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}

/* Circle */
.rps-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1.5px solid #FF3B0A;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

/* Line connects flush to circle border — margin-left: -1px closes the gap */
.rps-line {
  flex: 1;
  height: 0;
  border-top: 1.5px dashed #FF3B0A;
  opacity: 0.5;
  min-width: 10px;
  margin-left: -1px;
  margin-right: 0;
}
/* Text block */
.rps-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 10px;
}

/* min-height ensures all descriptions start at the same Y when titles wrap */
.rps-step-title {
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 18px;
  min-height: 42px;
  margin: 0 0 0px;
  margin-bottom: 3px;
  padding: 0 15px;
  letter-spacing: -.2px;
  display: flex;
  align-items: flex-start;
}

/* Step description */
.rps-step-desc {
  font-size: 13px;
  color: #666;
 
  margin: 0;
}

/* Icon inside circle — orange, not black */
.rps-circle i,
.rps-circle .elementor-icon {
  font-size: 22px ;
  width: 22px ;
  height: 22px ;
  color: #FF3B0A ;
  line-height: 1 ;
}

/* Icon inside circle — remove fill:none, it hides SVG icons */
.rps-circle i {
  font-size: 22px ;
  color: #FF3B0A ;
  line-height: 1 ;
  display: flex ;
  align-items: center ;
  justify-content: center ;
}

.rps-circle svg {
  width: 22px ;
  height: 22px ;
  fill: #FF3B0A ;  /* SVG needs fill, NOT none */
}

.rps-circle .elementor-icon {
  color: #FF3B0A ;
  font-size: 22px ;
  line-height: 1 ;
}

/* Override any Elementor default icon color */
.rps-circle .elementor-icon i::before,
.rps-circle i::before {
  color: #FF3B0A ;
}

/* Force FA icons to orange — override Elementor defaults */
.rps-circle .elementor-icon i::before {
  color: #FF3B0A ;
}

/* Let Elementor widget controls own icon sizing and colors. */
.rps-circle > i,
.rps-circle .elementor-icon,
.rps-circle .elementor-icon i {
  width: auto;
  height: auto;
  color: inherit;
  font-size: inherit;
  line-height: 1;
}

.rps-circle > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rps-circle svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.rps-circle .elementor-icon i::before,
.rps-circle i::before {
  color: inherit;
}

/* Responsive */
@media ( max-width: 1024px ) {
  .rps-steps {
    grid-template-columns: repeat(3, 1fr) ;
    row-gap: 36px;
  }
  .rps-line { display: none; }
}

@media ( max-width: 600px ) {
  .rps-steps {
    grid-template-columns: repeat(2, 1fr) ;
    row-gap: 28px;
  }
}

@media ( max-width: 400px ) {
  .rps-steps {
    grid-template-columns: 1fr ;
  }
}
