.rneat-usage-widget {
  --rn-blue: #13a8df;
  --rn-blue-2: #3158b7;
  --rn-navy: #09233f;
  --rn-text: #172033;
  --rn-muted: #66758a;
  --rn-card-bg: rgba(255, 255, 255, .9);
  --rn-shadow-soft: 0 10px 28px rgba(9, 35, 63, .055);
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding: 46px 0 34px;
  color: var(--rn-text);
  direction: rtl;
  line-height: 1.9;
  font-family: inherit;
}

.rneat-usage-widget * {
  box-sizing: border-box;
}

.rneat-usage-head {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 32px;
}

.rneat-title-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 4px;
}

.rneat-title-row h2 {
  margin: 0;
  color: var(--rn-navy);
  font-size: clamp(26px, 3.1vw, 42px);
  line-height: 1.35;
  letter-spacing: -1px;
  font-weight: 900;
}

.rneat-title-icon {
  width: 25px;
  height: 25px;
  stroke: var(--rn-blue-2);
  stroke-width: 1.7;
  fill: none;
  flex: 0 0 auto;
}

.rneat-usage-head p {
  margin: 4px 0 0;
  color: var(--rn-muted);
  font-weight: 700;
  font-size: 15px;
}

.rneat-usage-line {
  width: 52px;
  height: 4px;
  border-radius: 999px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, var(--rn-blue), var(--rn-blue-2));
}

.rneat-steps-row {
  position: relative;
  z-index: 2;
  --rn-steps-gap: 28px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--rn-steps-gap);
  align-items: stretch;
}

.rneat-step-card {
  position: relative;
  min-height: 315px;
  border-radius: 22px;
  border: 1px solid rgba(49, 88, 183, .14);
  background: var(--rn-card-bg);
  box-shadow: var(--rn-shadow-soft);
  padding: 34px 20px 24px;
  text-align: center;
  overflow: visible;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.rneat-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 54px rgba(9, 35, 63, .10);
  border-color: rgba(19, 168, 223, .32);
}

.rneat-step-number {
  position: absolute;
  top: -20px;
  right: 50%;
  transform: translateX(50%);
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  background: linear-gradient(145deg, var(--rn-blue), var(--rn-blue-2));
  border: 6px solid #f5fbff;
  box-shadow: 0 12px 25px rgba(49, 88, 183, .24);
}

.rneat-step-number-blue {
  color: #ffffff;
  background: #5591d2;
  border-color: #f5fbff;
  box-shadow: 0 12px 25px rgba(85, 145, 210, .28);
}

.rneat-step-media {
  width: 100%;
  height: 150px;
  margin: 22px auto 18px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, #f9fdff, #edf7ff);
  box-shadow: inset 0 0 0 1px rgba(49, 88, 183, .08), 0 16px 32px rgba(9, 35, 63, .075);
}

.rneat-step-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

.rneat-image-square .rneat-step-media {
  aspect-ratio: 1 / 1;
  height: auto;
}

.rneat-no-image-radius .rneat-step-media,
.rneat-no-image-radius .rneat-step-media img {
  border-radius: 0 !important;
}

.rneat-step-card h3 {
  margin: 0 0 8px;
  color: var(--rn-navy);
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: -.35px;
  font-weight: 900;
}

.rneat-step-card p {
  margin: 0;
  color: var(--rn-muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 2;
}

.rneat-step-arrow {
  display: none !important;
  position: absolute;
  top: 50%;
  left: -43px;
  transform: translateY(-50%);
  z-index: 4;
  width: var(--rn-arrow-size);
  height: var(--rn-arrow-size);
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--rn-blue-2);
  background: #ffffff;
  border: 1px solid rgba(49, 88, 183, .15);
  box-shadow: 0 10px 22px rgba(9, 35, 63, .08);
}

.rneat-step-arrow svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rneat-usage-actions {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.rneat-video-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 190px;
  padding: 12px 24px 13px;
  border-radius: 12px;
  border: none;
  outline: none;
  color: #fff;
  background: linear-gradient(135deg, #214ba6, var(--rn-blue-2));
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(49, 88, 183, .24);
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease;
}

.rneat-video-btn:hover,
.rneat-video-btn:focus {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(49, 88, 183, .30);
  text-decoration: none;
}

.rneat-video-btn-icon {
  width: 22px;
  height: 22px;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
  transform: scaleX(-1);
}

@media (max-width: 1024px) {
  .rneat-usage-widget {
    padding: 42px 0 30px;
  }

  .rneat-steps-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 22px;
  }

  .rneat-step-arrow {
    display: none;
  }

  .rneat-step-card {
    min-height: 220px;
    display: grid;
    grid-template-columns: 110px 1fr;
    grid-template-rows: auto auto;
    column-gap: 16px;
    align-items: center;
    text-align: right;
    padding: 24px 22px;
  }

  .rneat-step-number {
    top: 14px;
    right: auto;
    left: 14px;
    transform: none;
    width: 42px;
    height: 42px;
    border-width: 5px;
  }

  .rneat-step-media {
    grid-row: 1 / span 2;
    width: 102px;
    height: 102px;
    margin: 0;
    border-radius: 18px;
  }

  .rneat-step-card h3 {
    padding-left: 40px;
  }

  .rneat-step-card p {
    line-height: 1.9;
  }
}

@media (max-width: 575px) {
  .rneat-usage-widget {
    padding: 36px 0 18px;
  }

  .rneat-usage-head {
    margin-bottom: 22px;
  }

  .rneat-title-row h2 {
  }

  .rneat-title-icon {
    width: 20px;
    height: 20px;
  }

  .rneat-usage-head p {
    line-height: 1.8;
  }

  .rneat-usage-line {
    width: 46px;
    height: 3px;
    margin-top: 10px;
  }

  .rneat-steps-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .rneat-step-card {
    min-height: 154px;
    grid-template-columns: 86px 1fr;
    column-gap: 14px;
    border-radius: 20px;
    padding: 18px 16px 18px 12px;
  }

  .rneat-step-number {
    top: 13px;
    left: 13px;
    width: 38px;
    height: 38px;
    border-width: 4px;
  }

  .rneat-step-media {
    width: 82px;
    height: 82px;
    border-radius: 16px;
  }

  .rneat-step-card h3 {
    margin-bottom: 2px;
    padding-left: 40px;
    line-height: 1.65;
  }

  .rneat-step-card p {
    line-height: 1.85;
  }

  .rneat-usage-actions {
    margin-top: 18px;
  }

  .rneat-video-btn {
    width: 100%;
    min-width: 0;
    border-radius: 14px;
    padding: 11px 18px 12px;
  }
}

.rneat-hide-arrows .rneat-step-arrow {
  display: none !important;
}

/* Rneat Scenarios Elementor Widget */
.rneat-scenarios-widget {
  --rns-bg: #034EA2;
  --rns-card: #08A6DC;
  --rns-text: #ffffff;
  --rns-title-color: var(--rns-text);
  --rns-title-part-one-color: var(--rns-title-color);
  --rns-title-part-two-color: var(--rns-title-color);
  --rns-subtitle-color: rgba(255,255,255,.82);
  --rns-scenario-title-color: var(--rns-text);
  --rns-scenario-text-color: rgba(255,255,255,.92);
  --rns-shadow: 0 24px 70px rgba(1, 31, 73, .22);
  --rns-soft-shadow: 0 14px 34px rgba(1, 31, 73, .18);
  position: relative;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  overflow: hidden;
  border-radius: 0 0 34px 34px;
  background: var(--rns-bg);
  padding: 64px 60px 58px;
  color: var(--rns-text);
  direction: rtl;
  line-height: 1.9;
  font-family: inherit;
  box-shadow: var(--rns-shadow);
}

.rneat-scenarios-widget * {
  box-sizing: border-box;
}

.elementor-widget-rneat_scenarios,
.elementor-widget-rneat_scenarios .elementor-widget-container {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}


@supports not (overflow: clip) {
  .elementor-widget-rneat_scenarios,
  .elementor-widget-rneat_scenarios .elementor-widget-container {
    overflow-x: hidden;
  }
}

.rneat-scenarios-widget,
.rneat-scenarios-list {
  max-width: 100%;
}

.rneat-scenarios-widget::before {
  display: none;
}

.rneat-scenarios-full-bleed {
  /* Safe full-width mode: previous 100vw + negative margins could add
     a horizontal scrollbar on mobile/Elementor containers. Keep the
     widget inside its parent width; use Elementor full-width container
     for true edge-to-edge sections. */
  width: 100%;
  max-width: 100%;
  margin-right: 0;
  margin-left: 0;
}

.rneat-scenarios-head {
  position: relative;
  z-index: 2;
  text-align: right;
  margin-bottom: 32px;
  padding-inline: 8px;
}

.rneat-scenarios-head h2 {
  margin: 0;
  color: var(--rns-title-color);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.4;
  letter-spacing: -1px;
  font-weight: 900;
}

.rneat-scenarios-title-split {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-start;
  gap: .28em;
}

.rneat-scenarios-title-part {
  display: inline;
}

.rneat-scenarios-title-part-one {
  color: var(--rns-title-part-one-color);
}

.rneat-scenarios-title-part-two {
  color: var(--rns-title-part-two-color);
}

.rneat-scenarios-head p {
  margin: 10px 0 0;
  max-width: 860px;
  color: var(--rns-subtitle-color);
  font-size: 15px;
  font-weight: 700;
}

.rneat-scenarios-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 22px;
}

.rneat-scenario-card {
  position: relative;
  display: grid;
  grid-template-columns: 224px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  min-height: 260px;
  padding: 18px 24px;
  border-radius: 22px;
  background: var(--rns-card);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: var(--rns-soft-shadow);
  overflow: hidden;
  direction: ltr;
  transition: transform .18s ease, opacity .18s ease, filter .18s ease;
}

.rneat-scenario-card::before {
  display: none;
}

.rneat-scenario-media {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  position: relative;
  width: 224px;
  height: 224px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,.16);
  box-shadow: 0 12px 26px rgba(1,31,73,.14);
  isolation: isolate;
}

.rneat-scenario-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

.rneat-scenario-content {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  z-index: 2;
  color: var(--rns-text);
  text-align: right;
  direction: rtl;
  align-self: center;
  justify-self: end;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 900px;
  min-width: 0;
  min-height: 224px;
  padding: 0;
  overflow-wrap: anywhere;
}

.rneat-scenario-content h3 {
  overflow-wrap: anywhere;
  margin: 0 0 14px;
  color: var(--rns-scenario-title-color);
  font-size: 24px;
  line-height: 1.45;
  letter-spacing: -.4px;
  font-weight: 900;
}

.rneat-scenario-content p {
  overflow-wrap: anywhere;
  margin: 0;
  color: var(--rns-scenario-text-color);
  font-size: 15px;
  font-weight: 700;
  line-height: 2.15;
  text-align: right;
  text-align-last: right;
}

.rneat-scenarios-dots {
  display: none;
  position: relative;
  z-index: 2;
  justify-content: center;
  gap: 7px;
  margin-top: 16px;
}

.rneat-scenarios-dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.40);
  transition: width .25s ease, background .25s ease;
  cursor: pointer;
}

.rneat-scenarios-dots span.is-active {
  width: 22px;
  background: #fff;
}

.rneat-scenarios-controls {
  display: none !important;
}

.rneat-scenarios-controls button {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--rns-bg);
  box-shadow: 0 12px 28px rgba(1,31,73,.24);
  cursor: pointer;
  transition: transform .25s ease;
  padding: 0;
}

.rneat-scenarios-controls button:hover {
  transform: translateY(-2px);
}

.rneat-scenarios-controls svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rneat-scenarios-hide-dots .rneat-scenarios-dots,
.rneat-scenarios-hide-controls .rneat-scenarios-controls {
  display: none !important;
}

@media (max-width: 1024px) {
  .rneat-scenarios-widget {
    padding: 52px 26px 38px;
    border-radius: 28px;
  }

  .rneat-scenarios-head {
    text-align: right;
    margin-bottom: 24px;
  }

  .rneat-scenarios-head p {
    margin-inline: 0;
  }

  .rneat-scenarios-list {
    gap: 16px;
  }

  .rneat-scenario-card {
    grid-template-columns: 150px minmax(0, 1fr);
    min-height: 184px;
    gap: 16px;
    padding: 14px 18px;
    border-radius: 20px;
  }

  .rneat-scenario-media {
    width: 150px;
    height: 150px;
    border-radius: 18px;
  }

  .rneat-scenario-content {
    min-height: 150px;
    padding-top: 0;
  }

  .rneat-scenario-content h3 {
    margin-bottom: 9px;
    line-height: 1.55;
  }

  .rneat-scenario-content p {
    line-height: 1.9;
    text-align: right;
    text-align-last: right;
  }
}

@media (max-width: 575px) {
  .rneat-scenarios-widget {
    min-height: 590px;
    border-radius: 28px;
    padding: 40px 14px 24px;
    box-shadow: none;
  }

  .rneat-scenarios-head {
    text-align: center;
    margin-bottom: 24px;
    padding-inline: 6px;
  }

  .rneat-scenarios-head h2 {
    line-height: 1.5;
  }

  .rneat-scenarios-title-split {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: .12em;
  }

  .rneat-scenarios-title-part {
    display: block;
  }

  .rneat-scenarios-head p {
    line-height: 1.9;
    margin-inline: auto;
  }

  .rneat-scenarios-list {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 42px;
    padding: 20px 42px 26px;
    margin-inline: 0;
    scrollbar-width: none;
    direction: rtl;
    scroll-behavior: smooth;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: auto;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    touch-action: pan-x pan-y pinch-zoom;
    user-select: none;
  }

  .rneat-scenarios-list:active,
  .rneat-scenarios-list.is-dragging {
    cursor: grabbing;
  }

  .rneat-scenarios-list.is-dragging,
  .rneat-scenarios-list.is-settling {
    scroll-snap-type: none;
    scroll-behavior: auto;
  }

  .rneat-scenarios-list::-webkit-scrollbar {
    display: none;
  }

  .rneat-scenario-card {
    flex: 0 0 292px;
    display: flex;
    flex-direction: column;
    height: 344px;
    min-height: 344px;
    max-height: 344px;
    padding: 16px;
    border-radius: 24px;
    scroll-snap-align: center;
    scroll-snap-stop: normal;
    background: var(--rns-card);
    opacity: 1;
    transform: scale(.90);
    transform-origin: center center;
    filter: none;
    direction: rtl;
  }

  .rneat-scenario-card.is-active {
    flex-basis: 292px;
    height: var(--rns-mobile-active-card-height, 432px);
    min-height: var(--rns-mobile-active-card-height, 432px);
    max-height: var(--rns-mobile-active-card-height, 432px);
    opacity: 1;
    transform: scale(1);
    filter: none;
    box-shadow: none;
  }

  .rneat-scenarios-list.is-measuring-active-height .rneat-scenario-card.is-active {
    height: auto !important;
    min-height: 386px !important;
    max-height: none !important;
  }

  .rneat-scenario-card {
    box-shadow: none;
  }

  .rneat-scenario-media {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    aspect-ratio: 1.32 / 1;
    border-radius: 20px;
  }

  .rneat-scenario-content {
    min-height: 0;
    padding: 14px 8px 0;
    text-align: center;
    text-align-last: center;
    display: block;
    max-width: 100%;
    margin-inline: auto;
    overflow: hidden;
  }

  .rneat-scenario-content h3 {
    margin-bottom: 8px;
    text-align: center;
    text-align-last: center;
  }

  .rneat-scenario-card.is-active .rneat-scenario-content h3 {
  }

  .rneat-scenario-content p {
    line-height: 1.75;
    text-align: center;
    text-align-last: center;
  }

  .rneat-scenario-card.is-active .rneat-scenario-content p {
    line-height: 1.82;
  }

  .rneat-scenarios-dots {
    display: flex;
  }
}


/* Custom overrides: black step badges, blue badge for step 3, rounded video button */
.rneat-step-number {
  background: #000000 !important;
  border: none !important;
  box-shadow: none !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.rneat-step-number-blue {
  color: #ffffff !important;
  background: #5591d2 !important;
  border: none !important;
  box-shadow: none !important;
}

.rneat-video-btn {
  border-radius: 35px !important;
  padding: 11px 21px 11px 21px !important;
}

/* Tablet layout: make step 3 take a full single row */
@media (min-width: 576px) and (max-width: 1024px) {
  .rneat-steps-row .rneat-step-card:nth-child(3) {
    grid-column: 1 / -1 !important;
  }
}

/* Responsive typography note:
   Hard-coded font-size values inside tablet/mobile media queries were removed
   so Elementor/WordPress breakpoint typography controls can control the widget.
*/
