/* SECTION-1 */
.rhero {
  --rhero-blue: #2f6fed;
  --rhero-blue-light: #6fa1ff;
  --rhero-white: #ffffff;
  --rhero-white-soft: rgba(255, 255, 255, 0.78);
  --rhero-white-faint: rgba(255, 255, 255, 0.5);
  --rhero-border: rgba(255, 255, 255, 0.22);

  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 30px;
  box-sizing: border-box;
}

.rhero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.rhero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rhero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 8, 15, 0.78) 0%, rgba(5, 8, 15, 0.72) 55%, rgba(5, 8, 15, 0.88) 100%);
}

.rhero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.rhero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1px solid var(--rhero-border);
  border-radius: 999px;
  background: rgba(47, 111, 237, 0.18);
  color: var(--rhero-blue-light);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  margin: 0 0 22px;
}

.rhero__title {
  color: var(--rhero-white);
  font-size: 32px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0 0 18px;
}

.rhero__title-accent {
  color: var(--rhero-blue-light);
}

.rhero__desc {
  color: var(--rhero-white-soft);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 30px;
  max-width: 600px;
}

.rhero__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  list-style: none;
  margin: 0 0 34px;
  padding: 0;
}

.rhero__stat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid var(--rhero-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.rhero__stat i {
  color: var(--rhero-blue-light);
  font-size: 17px;
  flex-shrink: 0;
}

.rhero__stat-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  font-size: 12px;
  color: var(--rhero-white-faint);
  line-height: 1.4;
}

.rhero__stat-text strong {
  color: var(--rhero-white);
  font-size: 14px;
  font-weight: 700;
}

.rhero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
}

.rhero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.rhero__btn--primary {
  background: var(--rhero-blue);
  color: var(--rhero-white);
  box-shadow: 0 10px 24px -8px rgba(47, 111, 237, 0.65);
  cursor: pointer;
}

.rhero__btn--primary:hover {
  background: #2660d6;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -8px rgba(47, 111, 237, 0.75);
  color: #fff;
}

.rhero__btn--secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--rhero-white);
  border: 1.5px solid rgba(255, 255, 255, 0.32);
}

.rhero__btn--secondary:hover {
  border-color: var(--rhero-blue-light);
  color: var(--rhero-blue-light);
  transform: translateY(-2px);
}

.rhero__btn:focus-visible {
  outline: 2px solid var(--rhero-blue-light);
  outline-offset: 3px;
}

.rhero__micro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-size: 13.5px;
  margin: 0;
}

@media (min-width: 768px) {
  .rhero {
    min-height: 720px;
    
  }
  .rhero__title {
    font-size: 44px;
  }
  .rhero__desc {
    font-size: 17px;
  }
}

@media (min-width: 1024px) {
  .rhero__title {
    font-size: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rhero__btn {
    transition: none;
  }
  .rhero__video {
    display: none;
  }
  .rhero__media {
    background: #05080f;
  }
}
/* SECTION-2 */
/* ============ QUICK SUMMARY SECTION — scoped under .rqs ============ */
.rqs {
  --rqs-blue: #2f6fed;
  --rqs-blue-dim: rgba(47, 111, 237, 0.1);
  --rqs-blue-line: rgba(47, 111, 237, 0.35);
  --rqs-black: #0b1220;
  --rqs-grey: #5b6472;
  --rqs-border: #e6e9f0;
  --rqs-bg: #f7f9fc;

  background: var(--rqs-bg);
  padding: 56px 24px;
  box-sizing: border-box;
}

.rqs__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* ---------- COPY ---------- */
.rqs__copy {
  max-width: 680px;
}

.rqs__title {
  color: var(--rqs-black);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.3px;
  margin: 0 0 18px;
}

.rqs__answer {
  color: var(--rqs-black);
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 14px;
}

.rqs__followup {
  color: var(--rqs-grey);
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0 0 24px;
}

.rqs__chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.rqs__chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--rqs-blue-dim);
  border: 1px solid var(--rqs-blue-line);
  color: var(--rqs-blue);
  font-size: 13.5px;
  font-weight: 700;
}

.rqs__chip--accent {
  background: var(--rqs-blue);
  color: #ffffff;
  border-color: var(--rqs-blue);
}

.rqs__chip-sep {
  color: #c4cbd6;
  font-size: 10px;
}

/* ---------- VISUAL: CIRCULAR FLOW ---------- */
.rqs__visual {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}

.rqs__ring {
  position: absolute;
  inset: 8%;
  border: 2px dashed var(--rqs-blue-line);
  border-radius: 50%;
  animation: rqs-spin 32s linear infinite;
}

@keyframes rqs-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.rqs__arrows {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.rqs__arc {
  fill: none;
  stroke: var(--rqs-blue);
  stroke-width: 2;
  opacity: 0.6;
}

.rqs__arrowhead {
  fill: var(--rqs-blue);
}

.rqs__hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--rqs-black);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 14px 28px -10px rgba(11, 18, 32, 0.4);
  text-align: center;
}

.rqs__hub i {
  font-size: 18px;
  color: #6fa1ff;
}

.rqs__hub span {
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
}

.rqs__node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 76px;
  text-align: center;
  transform: translate(-50%, -50%);
}

.rqs__node i {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid var(--rqs-border);
  color: var(--rqs-blue);
  font-size: 16px;
  box-shadow: 0 8px 18px -8px rgba(11, 18, 32, 0.16);
}

.rqs__node span {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--rqs-black);
}

.rqs__node--top    { top: 6%;  left: 50%; }
.rqs__node--right  { top: 50%; left: 94%; }
.rqs__node--bottom { top: 94%; left: 50%; }
.rqs__node--left   { top: 50%; left: 6%; }

/* ---------- RESPONSIVE ---------- */
@media (min-width: 1024px) {
  
  .rqs__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
  }
  .rqs__copy {
    flex: 0 0 54%;
  }
  .rqs__title {
    font-size: 30px;
  }
  .rqs__visual {
    flex: 0 0 360px;
    max-width: 360px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rqs__ring {
    animation: none;
  }
}

/* SECTION-3 */
.rtrust {
  --rtrust-blue: #2f6fed;
  --rtrust-blue-dim: rgba(47, 111, 237, 0.09);
  --rtrust-black: #0b1220;
  --rtrust-grey: #5b6472;
  --rtrust-border: #e6e9f0;

  background: #ffffff;
  padding: 56px 24px;
  box-sizing: border-box;
}

.rtrust__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.rtrust__title {
  color: var(--rtrust-black);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.3px;
  text-align: center;
  margin: 0 0 40px;
}

.rtrust__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.rtrust__card {
  background: #ffffff;
  border: 1px solid var(--rtrust-border);
  border-radius: 14px;
  padding: 26px 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.rtrust__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px -16px rgba(11, 18, 32, 0.16);
  border-color: var(--rtrust-blue);
}

.rtrust__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--rtrust-blue-dim);
  color: var(--rtrust-blue);
  font-size: 20px;
  margin-bottom: 16px;
}

.rtrust__card-title {
  color: var(--rtrust-black);
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 10px;
}

.rtrust__card-text {
  color: var(--rtrust-grey);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

@media (min-width: 640px) {
  .rtrust__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .rtrust__title { font-size: 30px; }
  .rtrust__grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  .rtrust__card { transition: none; }
}

/* SECTION-4 */
.rproblem {
  --rproblem-blue: #2f6fed;
  --rproblem-black: #0b1220;
  --rproblem-navy: #0d1a30;
  --rproblem-grey: #5b6472;
  --rproblem-border: #e6e9f0;
  --rproblem-bg: #f7f9fc;

  background: var(--rproblem-bg);
  padding: 56px 20px;
  box-sizing: border-box;
}

.rproblem__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.rproblem__head {
  max-width: 760px;
  margin: 0 0 36px;
}

.rproblem__title {
  color: var(--rproblem-black);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin: 0 0 14px;
}

.rproblem__intro {
  color: var(--rproblem-grey);
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0;
}

.rproblem__body {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.rproblem__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.rproblem__card {
  flex: 0 1 100%;
  background: #ffffff;
  border: 1px solid var(--rproblem-border);
  border-radius: 14px;
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rproblem__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px -16px rgba(11, 18, 32, 0.16);
}
.rproblem__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(47, 111, 237, 0.09);
  color: var(--rproblem-blue);
  font-size: 18px;
  margin-bottom: 14px;
}

.rproblem__card-title {
  color: var(--rproblem-black);
  font-size: 15.5px;
  font-weight: 700;
  margin: 0 0 8px;
}

.rproblem__card-text {
  color: var(--rproblem-grey);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}

.rproblem__cta-card {
  position: relative;
  background:
    linear-gradient(165deg, rgba(13, 26, 48, 0.93), rgba(13, 26, 48, 0.88)),
   url("../images/retail-software-dubai/retail-bussiness.webp")
      center / cover no-repeat;
  border-radius: 16px;
  padding: 30px 26px;
  color: #ffffff;
  overflow: hidden;
}

.rproblem__cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(2px);
  color: #6fa1ff;
  font-size: 20px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.rproblem__cta-title {
  font-size: 19px;
  font-weight: 800;
  margin: 0 0 10px;
  position: relative;
  z-index: 1;
}

.rproblem__cta-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
}


.rproblem__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2f6fed;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 9px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.rproblem__cta-btn:hover {
  background: #2660d6;
  transform: translateY(-2px);
  color: #fff;
}

@media (min-width: 700px) {
  .rproblem__card {
    flex: 0 1 calc((100% - 16px) / 2);
  }
}

@media (min-width: 1024px) {
  .rproblem__title { font-size: 30px; }
  .rproblem__body { flex-direction: row; align-items: stretch; gap: 28px; }
  .rproblem__grid { flex: 1; }
  .rproblem__card { flex: 0 1 calc((100% - 16px) / 2); }
  .rproblem__cta-card { flex: 0 0 280px; display: flex; flex-direction: column; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .rproblem__card, .rproblem__cta-btn { transition: none; }
}




/* SECTION-5 */
.rsolution {
  --rsolution-blue: #2f6fed;
  --rsolution-black: #0b1220;
  --rsolution-grey: #5b6472;
  --rsolution-border: #e6e9f0;

  background: #ffffff;
  padding: 56px 20px;
  box-sizing: border-box;
}

.rsolution__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.rsolution__head {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.rsolution__title {
  color: var(--rsolution-black);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin: 0 0 14px;
}

.rsolution__intro {
  color: var(--rsolution-grey);
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0;
}

.rsolution__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.rsolution__card {
  display: flex;
  flex-direction: column;
  background: #fbfcfe;
  border: 1px solid var(--rsolution-border);
  border-radius: 14px;
  padding: 24px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.rsolution__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px -16px rgba(11, 18, 32, 0.16);
  border-color: var(--rsolution-blue);
}

.rsolution__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
  color: var(--rsolution-blue);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  width: fit-content;
  transition: gap 0.2s ease, color 0.2s ease;
}

.rsolution__link:hover {
  gap: 9px;
  color: #2660d6;
}

.rsolution__link:focus-visible {
  outline: 2px solid var(--rsolution-blue);
  outline-offset: 3px;
  border-radius: 4px;
}

.rsolution__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(47, 111, 237, 0.09);
  color: var(--rsolution-blue);
  font-size: 19px;
  margin-bottom: 16px;
}

.rsolution__card-title {
  color: var(--rsolution-black);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
}

.rsolution__card-text {
  color: var(--rsolution-grey);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0 0 16px;
  flex: 1;
}

.rsolution__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--rsolution-blue);
  font-size: 13px;
  font-weight: 700;
}

@media (min-width: 640px) {
  .rsolution__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .rsolution__title { font-size: 30px; }
  .rsolution__grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .rsolution__card { transition: none; }
}

/* SECTION-6 */
.raio {
  --raio-blue: #2f6fed;
  --raio-black: #0b1220;
  --raio-grey: #45506a;

  background: #eef4ff;
  padding: 48px 20px;
  box-sizing: border-box;
}

.raio__inner {
  max-width: 840px;
  margin: 0 auto;
}

.raio__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(47, 111, 237, 0.25);
  color: var(--raio-blue);
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 18px;
}

.raio__title {
  color: var(--raio-black);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin: 0 0 16px;
}

.raio__answer {
  color: var(--raio-black);
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 16px;
}

.raio__followup {
  color: var(--raio-grey);
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}

@media (min-width: 1024px) {
  .raio__title { font-size: 28px; }
}

/* SECTION-7 */
.rverticals {
  --rverticals-black: #0b1220;
  --rverticals-grey: #5b6472;
  --rverticals-border: #e6e9f0;
  --rverticals-blue: #2f6fed;

  background: #ffffff;
  padding: 56px 20px;
  box-sizing: border-box;
}

.rverticals__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.rverticals__title {
  color: var(--rverticals-black);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.3px;
  text-align: center;
  margin: 0 0 36px;
}

.rverticals__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.rverticals__card {
  background: #fbfcfe;
  border: 1px solid var(--rverticals-border);
  border-radius: 14px;
  overflow: hidden;
  padding-bottom: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rverticals__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px -16px rgba(11, 18, 32, 0.18);
}

.rverticals__media {
  width: 100%;
  height: 170px;
  overflow: hidden;
  margin-bottom: 18px;
  background: #eef1f6;
}

.rverticals__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.rverticals__card:hover .rverticals__img {
  transform: scale(1.06);
}

.rverticals__card-title {
  color: var(--rverticals-black);
  font-size: 15.5px;
  font-weight: 700;
  margin: 0 18px 8px;
}

.rverticals__card-text {
  color: var(--rverticals-grey);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0 18px;
}

@media (min-width: 640px) {
  .rverticals__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .rverticals__title { font-size: 30px; }
  .rverticals__grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .rverticals__card,
  .rverticals__img { transition: none; }
}
/* SECTION-8 */
.rmobileapp {
  --rmobileapp-blue: #2f6fed;
  --rmobileapp-black: #0b1220;
  --rmobileapp-grey: #5b6472;
  --rmobileapp-border: #e6e9f0;

  background: #f7f9fc;
  padding: 56px 20px;
  box-sizing: border-box;
}

.rmobileapp__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.rmobileapp__head {
  max-width: 800px;
  margin: 0 0 36px;
}

.rmobileapp__title {
  color: var(--rmobileapp-black);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin: 0 0 14px;
}

.rmobileapp__intro {
  color: var(--rmobileapp-grey);
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0;
}

.rmobileapp__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.rmobileapp__card {
  background: #ffffff;
  border: 1px solid var(--rmobileapp-border);
  border-radius: 14px;
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rmobileapp__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px -16px rgba(11, 18, 32, 0.16);
}

.rmobileapp__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: rgba(47, 111, 237, 0.09);
  color: var(--rmobileapp-blue);
  font-size: 18px;
  margin-bottom: 14px;
}

.rmobileapp__card-title {
  color: var(--rmobileapp-black);
  font-size: 15.5px;
  font-weight: 700;
  margin: 0 0 8px;
}

.rmobileapp__card-text {
  color: var(--rmobileapp-grey);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}

.rmobileapp__footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid var(--rmobileapp-border);
  border-radius: 14px;
  padding: 26px;
}

.rmobileapp__note {
  color: var(--rmobileapp-grey);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.rmobileapp__cta {
  display: inline-flex;
  align-items: center;
  background: var(--rmobileapp-blue);
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: 9px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.rmobileapp__cta:hover {
  background: #2660d6;
  transform: translateY(-2px);
  color: #fff;
}

@media (min-width: 640px) {
  .rmobileapp__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .rmobileapp__title { font-size: 30px; }
  .rmobileapp__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .rmobileapp__footer { flex-direction: row; align-items: center; justify-content: space-between; }
  .rmobileapp__note { max-width: 640px; }
}

@media (prefers-reduced-motion: reduce) {
  .rmobileapp__card, .rmobileapp__cta { transition: none; }
}

/* SECTION-9 */
.recom {
  --recom-blue: #2f6fed;
  --recom-black: #0b1220;
  --recom-grey: #5b6472;
  --recom-border: #e6e9f0;

  background: #ffffff;
  padding: 56px 20px;
  box-sizing: border-box;
}

.recom__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.recom__head {
  max-width: 800px;
  margin: 0 0 36px;
}

.recom__title {
  color: var(--recom-black);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin: 0 0 14px;
}

.recom__intro {
  color: var(--recom-grey);
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0;
}

.recom__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.recom__card {
  background: #fbfcfe;
  border: 1px solid var(--recom-border);
  border-radius: 14px;
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.recom__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px -16px rgba(11, 18, 32, 0.16);
}

.recom__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: rgba(47, 111, 237, 0.09);
  color: var(--recom-blue);
  font-size: 18px;
  margin-bottom: 14px;
}

.recom__card-title {
  color: var(--recom-black);
  font-size: 15.5px;
  font-weight: 700;
  margin: 0 0 8px;
}

.recom__card-text {
  color: var(--recom-grey);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 640px) {
  .recom__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .recom__title { font-size: 30px; }
  .recom__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .recom__card { transition: none; }
}

/* SECTION-10 */
.rpos {
  --rpos-blue: #2f6fed;
  --rpos-black: #0b1220;
  --rpos-grey: #5b6472;
  --rpos-border: #e6e9f0;

  background: #f7f9fc;
  padding: 56px 20px;
  box-sizing: border-box;
}

.rpos__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.rpos__head {
  max-width: 800px;
  margin: 0 0 36px;
}

.rpos__title {
  color: var(--rpos-black);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin: 0 0 14px;
}

.rpos__intro {
  color: var(--rpos-grey);
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0;
}

.rpos__body {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.rpos__visual {
  display: flex;
  justify-content: center;
}

.rpos__terminal {
  width: 100%;
  max-width: 280px;
  background: var(--rpos-black);
  border-radius: 18px;
  padding: 18px;
  color: #ffffff;
  box-shadow: 0 24px 44px -20px rgba(11, 18, 32, 0.35);
}

.rpos__terminal-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 10px;
}

.rpos__terminal-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  padding: 6px 0;
}

.rpos__terminal-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 6px 0;
}

.rpos__terminal-row--total {
  font-weight: 700;
  color: #ffffff;
  font-size: 14px;
}

.rpos__terminal-pay {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  gap: 6px;
}

.rpos__terminal-pay span {
  flex: 1;
  text-align: center;
  background: rgba(47, 111, 237, 0.18);
  color: #6fa1ff;
  font-size: 10.5px;
  font-weight: 600;
  padding: 8px 4px;
  border-radius: 8px;
}

.rpos__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.rpos__card {
  background: #ffffff;
  border: 1px solid var(--rpos-border);
  border-radius: 14px;
  padding: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rpos__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px -16px rgba(11, 18, 32, 0.16);
}

.rpos__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(47, 111, 237, 0.09);
  color: var(--rpos-blue);
  font-size: 17px;
  margin-bottom: 12px;
}

.rpos__card-title {
  color: var(--rpos-black);
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 8px;
}

.rpos__card-text {
  color: var(--rpos-grey);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 640px) {
  .rpos__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .rpos__title { font-size: 30px; }
  .rpos__body { flex-direction: row; gap: 36px; }
  .rpos__visual { flex: 0 0 280px; align-items: flex-start; padding-top: 6px; }
  .rpos__grid { flex: 1; grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  .rpos__card { transition: none; }
}

/* SECTION-11*/
.rinv {
  --rinv-blue: #2f6fed;
  --rinv-black: #0b1220;
  --rinv-grey: #5b6472;
  --rinv-border: #e6e9f0;

  background: #ffffff;
  padding: 56px 20px;
  box-sizing: border-box;
}

.rinv__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.rinv__head {
  max-width: 800px;
  margin: 0 0 28px;
}

.rinv__title {
  color: var(--rinv-black);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin: 0 0 14px;
}

.rinv__intro {
  color: var(--rinv-grey);
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0;
}

.rinv__panel {
  background: var(--rinv-black);
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 32px;
  color: #ffffff;
}

.rinv__panel-title {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rinv__panel-title i { color: #6fa1ff; }

.rinv__bars {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rinv__bar-item {
  display: grid;
  grid-template-columns: 130px 1fr 40px;
  align-items: center;
  gap: 12px;
  font-size: 12px;
}

.rinv__bar-label { color: rgba(255, 255, 255, 0.75); }

.rinv__bar-track {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.rinv__bar-fill {
  display: block;
  height: 100%;
  background: #6fa1ff;
  border-radius: 999px;
}

.rinv__bar-fill--low { background: #ffffff; }

.rinv__bar-pct {
  text-align: right;
  font-weight: 700;
  color: #ffffff;
}

.rinv__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.rinv__card {
  background: #fbfcfe;
  border: 1px solid var(--rinv-border);
  border-radius: 14px;
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rinv__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px -16px rgba(11, 18, 32, 0.16);
}

.rinv__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: rgba(47, 111, 237, 0.09);
  color: var(--rinv-blue);
  font-size: 18px;
  margin-bottom: 14px;
}

.rinv__card-title {
  color: var(--rinv-black);
  font-size: 15.5px;
  font-weight: 700;
  margin: 0 0 8px;
}

.rinv__card-text {
  color: var(--rinv-grey);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 600px) {
  .rinv__bar-item { grid-template-columns: 150px 1fr 44px; }
}

@media (min-width: 640px) {
  .rinv__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .rinv__title { font-size: 30px; }
  .rinv__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .rinv__card { transition: none; }
}

/* SECTION-12*/
.raiauto {
  --raiauto-blue: #2f6fed;
  --raiauto-black: #0b1220;
  --raiauto-grey: #5b6472;
  --raiauto-border: #e6e9f0;

  background: #f7f9fc;
  padding: 56px 20px;
  box-sizing: border-box;
}

.raiauto__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.raiauto__head {
  max-width: 800px;
  margin: 0 0 28px;
}

.raiauto__title {
  color: var(--raiauto-black);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin: 0 0 14px;
}

.raiauto__intro {
  color: var(--raiauto-grey);
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0;
}

.raiauto__dashboard {
  background: var(--raiauto-black);
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  color: #ffffff;
}

.raiauto__dash-label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.raiauto__dash-chart,
.raiauto__dash-bars {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 14px;
}

.raiauto__dash-svg { width: 100%; height: 60px; }
.raiauto__dash-line { stroke: #6fa1ff; stroke-width: 2.5; }

.raiauto__dash-bar {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 60px;
}

.raiauto__dash-bar span {
  flex: 1;
  background: linear-gradient(180deg, #6fa1ff, #2f6fed);
  border-radius: 4px 4px 0 0;
}

.raiauto__dash-chat {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 14px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.85);
}

.raiauto__dash-chat i {
  color: #6fa1ff;
  font-size: 16px;
  flex-shrink: 0;
}

.raiauto__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 22px;
}

.raiauto__card {
  background: #ffffff;
  border: 1px solid var(--raiauto-border);
  border-radius: 14px;
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.raiauto__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px -16px rgba(11, 18, 32, 0.16);
}

.raiauto__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: rgba(47, 111, 237, 0.09);
  color: var(--raiauto-blue);
  font-size: 18px;
  margin-bottom: 14px;
}

.raiauto__card-title {
  color: var(--raiauto-black);
  font-size: 15.5px;
  font-weight: 700;
  margin: 0 0 8px;
}

.raiauto__card-text {
  color: var(--raiauto-grey);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}

.raiauto__note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--raiauto-grey);
  font-size: 13.5px;
  line-height: 1.6;
  background: #eef4ff;
  border-radius: 10px;
  padding: 16px;
  margin: 0;
}

.raiauto__note i { color: var(--raiauto-blue); margin-top: 2px; }

@media (min-width: 640px) {
  .raiauto__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .raiauto__dashboard { grid-template-columns: 1fr 1fr 1.4fr; }
}

@media (min-width: 1024px) {
  .raiauto__title { font-size: 30px; }
  .raiauto__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .raiauto__card { transition: none; }
}

/* SECTION-13*/
.rloyalty {
  --rloyalty-blue: #2f6fed;
  --rloyalty-black: #0b1220;
  --rloyalty-grey: #5b6472;
  --rloyalty-border: #e6e9f0;

  background: #ffffff;
  padding: 56px 20px;
  box-sizing: border-box;
}

.rloyalty__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.rloyalty__head {
  max-width: 800px;
  margin: 0 0 28px;
}

.rloyalty__title {
  color: var(--rloyalty-black);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin: 0 0 14px;
}

.rloyalty__intro {
  color: var(--rloyalty-grey);
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0;
}

.rloyalty__body {
  display: flex;
  flex-direction: column-reverse;
  gap: 28px;
}

.rloyalty__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.rloyalty__card {
  background: #fbfcfe;
  border: 1px solid var(--rloyalty-border);
  border-radius: 14px;
  padding: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rloyalty__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px -16px rgba(11, 18, 32, 0.16);
}

.rloyalty__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(47, 111, 237, 0.09);
  color: var(--rloyalty-blue);
  font-size: 17px;
  margin-bottom: 12px;
}

.rloyalty__card-title {
  color: var(--rloyalty-black);
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 8px;
}

.rloyalty__card-text {
  color: var(--rloyalty-grey);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
}

.rloyalty__visual {
  display: flex;
  justify-content: center;
}

.rloyalty__phone-card {
  width: 100%;
  max-width: 260px;
  background: linear-gradient(160deg, #163b8c, #0b1220);
  border-radius: 18px;
  padding: 22px;
  color: #ffffff;
  box-shadow: 0 24px 44px -20px rgba(11, 18, 32, 0.35);
}

.rloyalty__phone-label {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 8px;
}

.rloyalty__phone-points {
  display: block;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 4px;
}

.rloyalty__phone-points small {
  font-size: 13px;
  font-weight: 600;
}

.rloyalty__phone-tier {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: #ffd166;
  margin-bottom: 18px;
}

.rloyalty__phone-redeem {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  text-align: center;
  padding: 10px;
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 14px;
}

.rloyalty__phone-push {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 9px;
  padding: 10px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
}

.rloyalty__phone-push i { color: #6fa1ff; }

@media (min-width: 640px) {
  .rloyalty__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .rloyalty__title { font-size: 30px; }
  .rloyalty__body { flex-direction: row; gap: 36px; }
  .rloyalty__grid { flex: 1; grid-template-columns: repeat(2, 1fr); }
  .rloyalty__visual { flex: 0 0 260px; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .rloyalty__card { transition: none; }
}

/* SECTION-14*/
.rfeat {
  --rfeat-blue: #2f6fed;
  --rfeat-black: #0b1220;
  --rfeat-grey: #45506a;
  --rfeat-border: #e6e9f0;

  background: #f7f9fc;
  padding: 56px 20px;
  box-sizing: border-box;
}

.rfeat__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.rfeat__title {
  color: var(--rfeat-black);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.3px;
  text-align: center;
  margin: 0 0 36px;
}

.rfeat__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.rfeat__col {
  background: #ffffff;
  border: 1px solid var(--rfeat-border);
  border-top: 3px solid var(--rfeat-blue);
  border-radius: 14px;
  padding: 26px 24px;
}

.rfeat__col-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: rgba(47, 111, 237, 0.09);
  color: var(--rfeat-blue);
  font-size: 18px;
  margin-bottom: 14px;
}

.rfeat__col-title {
  color: var(--rfeat-black);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 16px;
}

.rfeat__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rfeat__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--rfeat-grey);
  font-size: 13.5px;
  line-height: 1.5;
}

.rfeat__list i {
  color: var(--rfeat-blue);
  font-size: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .rfeat__title { font-size: 30px; }
  .rfeat__grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}

/* SECTION-15*/
.rsec {
  --rsec-blue: #2f6fed;
  --rsec-black: #0b1220;
  --rsec-grey: #5b6472;
  --rsec-border: #e6e9f0;

  background: #ffffff;
  padding: 56px 20px;
  box-sizing: border-box;
}

.rsec__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.rsec__head {
  max-width: 800px;
  margin: 0 0 36px;
}

.rsec__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--rsec-black);
  color: #6fa1ff;
  font-size: 22px;
  margin-bottom: 18px;
}

.rsec__title {
  color: var(--rsec-black);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin: 0 0 14px;
}

.rsec__intro {
  color: var(--rsec-grey);
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0;
}

.rsec__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.rsec__card {
  background: #fbfcfe;
  border: 1px solid var(--rsec-border);
  border-radius: 14px;
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.rsec__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px -16px rgba(11, 18, 32, 0.16);
  border-color: var(--rsec-blue);
}

.rsec__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: rgba(47, 111, 237, 0.09);
  color: var(--rsec-blue);
  font-size: 18px;
  margin-bottom: 14px;
}

.rsec__card-title {
  color: var(--rsec-black);
  font-size: 15.5px;
  font-weight: 700;
  margin: 0 0 8px;
}

.rsec__card-text {
  color: var(--rsec-grey);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 640px) {
  .rsec__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .rsec__title { font-size: 30px; }
  .rsec__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .rsec__card { transition: none; }
}

/* SECTION-16*/
.rint {
  --rint-blue: #2f6fed;
  --rint-black: #0b1220;
  --rint-grey: #5b6472;
  --rint-border: #e6e9f0;

  background: #f7f9fc;
  padding: 56px 20px;
  box-sizing: border-box;
}

.rint__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.rint__head {
  max-width: 800px;
  margin: 0 0 32px;
}

.rint__title {
  color: var(--rint-black);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin: 0 0 14px;
}

.rint__intro {
  color: var(--rint-grey);
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0;
}

.rint__hub-wrap {
  position: relative;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 36px;
}

.rint__hub-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.rint__hub-line {
  stroke: rgba(47, 111, 237, 0.3);
  stroke-width: 2;
  stroke-dasharray: 4 5;
}

.rint__hub-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--rint-black);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.3;
  box-shadow: 0 16px 30px -12px rgba(11, 18, 32, 0.4);
}

.rint__hub-center i { font-size: 20px; color: #6fa1ff; }

.rint__hub-node {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 84px;
  text-align: center;
}

.rint__hub-node i {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid var(--rint-border);
  color: var(--rint-blue);
  font-size: 15px;
  box-shadow: 0 8px 18px -8px rgba(11, 18, 32, 0.16);
}

.rint__hub-node span {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--rint-black);
}

.rint__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.rint__card {
  background: #ffffff;
  border: 1px solid var(--rint-border);
  border-radius: 14px;
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rint__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px -16px rgba(11, 18, 32, 0.16);
}

.rint__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: rgba(47, 111, 237, 0.09);
  color: var(--rint-blue);
  font-size: 18px;
  margin-bottom: 14px;
}

.rint__card-title {
  color: var(--rint-black);
  font-size: 15.5px;
  font-weight: 700;
  margin: 0 0 8px;
}

.rint__card-text {
  color: var(--rint-grey);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 640px) {
  .rint__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .rint__title { font-size: 30px; }
  .rint__hub-wrap { max-width: 440px; margin-bottom: 44px; }
  .rint__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .rint__card { transition: none; }
}

/* SECTION-17*/
.rproc {
  --rproc-blue: #2f6fed;
  --rproc-black: #0b1220;
  --rproc-grey: #5b6472;
  --rproc-border: #e6e9f0;

  background: #ffffff;
  padding: 56px 20px;
  box-sizing: border-box;
}

.rproc__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.rproc__title {
  color: var(--rproc-black);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.3px;
  text-align: center;
  margin: 0 0 36px;
}

.rproc__track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.rproc__step {
  position: relative;
  background: #fbfcfe;
  border: 1px solid var(--rproc-border);
  border-radius: 14px;
  padding: 24px 22px;
}

.rproc__num {
  display: block;
  color: rgba(47, 111, 237, 0.22);
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 6px;
}

.rproc__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(47, 111, 237, 0.09);
  color: var(--rproc-blue);
  font-size: 17px;
  margin-bottom: 14px;
}

.rproc__step-title {
  color: var(--rproc-black);
  font-size: 15.5px;
  font-weight: 700;
  margin: 0 0 8px;
}

.rproc__step-text {
  color: var(--rproc-grey);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 640px) {
  .rproc__track { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .rproc__title { font-size: 30px; }
  .rproc__track { grid-template-columns: repeat(6, 1fr); gap: 14px; }
  .rproc__step { padding: 22px 16px; }
  .rproc__step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 38px;
    right: -15px;
    width: 14px;
    height: 2px;
    background: var(--rproc-border);
  }
}

/* SECTION-18*/
.rwhy {
  --rwhy-blue: #2f6fed;
  --rwhy-blue-light: #6fa1ff;

  background: #06090f;
  padding: 56px 20px;
  box-sizing: border-box;
}

.rwhy__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.rwhy__head {
  max-width: 760px;
  margin: 0 0 36px;
}

.rwhy__title {
  color: #ffffff;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin: 0 0 14px;
}

.rwhy__intro {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0;
}

.rwhy__compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 32px;
}

.rwhy__col {
  border-radius: 16px;
  padding: 26px;
}

.rwhy__col--us {
  background: rgba(47, 111, 237, 0.12);
  border: 1px solid rgba(47, 111, 237, 0.3);
}

.rwhy__col--them {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.rwhy__col-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rwhy-blue-light);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 18px;
}

.rwhy__col-label--muted {
  color: rgba(255, 255, 255, 0.55);
}

.rwhy__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.rwhy__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13.5px;
  line-height: 1.55;
}

.rwhy__list li i {
  color: var(--rwhy-blue-light);
  font-size: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}

.rwhy__list--muted li {
  color: rgba(255, 255, 255, 0.45);
}

.rwhy__list--muted li i {
  color: rgba(255, 255, 255, 0.35);
}

.rwhy__footer {
  text-align: center;
}

.rwhy__cta {
  display: inline-flex;
  align-items: center;
  background: var(--rwhy-blue);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.rwhy__cta:hover {
  background: #2660d6;
  transform: translateY(-2px);
  color: #fff;
}

@media (min-width: 768px) {
  .rwhy__compare { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .rwhy__title { font-size: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  .rwhy__cta { transition: none; }
}

/* SECTION-19*/
.ruse {
  --ruse-blue: #2f6fed;
  --ruse-black: #0b1220;

  background: #ffffff;
  padding: 48px 20px;
  box-sizing: border-box;
}

.ruse__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.ruse__title {
  color: var(--ruse-black);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin: 0 0 28px;
}

.ruse__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.ruse__chip {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid #d9e2f5;
  background: #f7f9fc;
  color: var(--ruse-black);
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.ruse__chip:hover {
  background: var(--ruse-blue);
  border-color: var(--ruse-blue);
  color: #ffffff;
}

@media (min-width: 1024px) {
  .ruse__title { font-size: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  .ruse__chip { transition: none; }
}

/* SECTION-20*/
.rtech {
  --rtech-blue: #2f6fed;
  --rtech-black: #0b1220;
  --rtech-grey: #5b6472;
  --rtech-border: #e6e9f0;

  background: #f7f9fc;
  padding: 56px 20px;
  box-sizing: border-box;
}

.rtech__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.rtech__title {
  color: var(--rtech-black);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.3px;
  text-align: center;
  margin: 0 0 36px;
}

.rtech__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.rtech__card {
  flex: 0 1 100%;
  background: #ffffff;
  border: 1px solid var(--rtech-border);
  border-radius: 12px;
  padding: 20px;
}


.rtech__cat {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--rtech-black);
  font-size: 14.5px;
  font-weight: 700;
  margin: 0 0 14px;
}

.rtech__cat i {
  color: var(--rtech-blue);
  font-size: 15px;
}

.rtech__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rtech__tags span {
  background: rgba(47, 111, 237, 0.08);
  color: var(--rtech-grey);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 11px;
  border-radius: 999px;
}

@media (min-width: 640px) {
  .rtech__card {
    flex: 0 1 calc((100% - 14px) / 2);
  }
}

@media (min-width: 1024px) {
  .rtech__title { font-size: 30px; }
  .rtech__grid { gap: 18px; }
  .rtech__card {
    flex: 0 1 calc((100% - 36px) / 3);
  }
}

/* SECTION-21*/
.rout {
  --rout-blue: #2f6fed;
  --rout-black: #0b1220;
  --rout-grey: #5b6472;
  --rout-border: #e6e9f0;

  background: #ffffff;
  padding: 56px 20px;
  box-sizing: border-box;
}

.rout__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.rout__title {
  color: var(--rout-black);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.3px;
  text-align: center;
  margin: 0 0 36px;
}

.rout__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.rout__card {
  background: #fbfcfe;
  border: 1px solid var(--rout-border);
  border-radius: 14px;
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rout__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px -16px rgba(11, 18, 32, 0.16);
}

.rout__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(47, 111, 237, 0.09);
  color: var(--rout-blue);
  font-size: 19px;
  margin-bottom: 16px;
}

.rout__card-title {
  color: var(--rout-black);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
}

.rout__card-text {
  color: var(--rout-grey);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 640px) {
  .rout__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .rout__title { font-size: 30px; }
  .rout__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .rout__card { transition: none; }
}

/* SECTION-22*/
.rproj {
  --rproj-blue: #2f6fed;
  --rproj-black: #0b1220;
  --rproj-grey: #5b6472;
  --rproj-border: #e6e9f0;

  background: #f7f9fc;
  padding: 56px 20px;
  box-sizing: border-box;
}

.rproj__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.rproj__title {
  color: var(--rproj-black);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.3px;
  text-align: center;
  margin: 0 0 36px;
}

.rproj__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 32px;
}

.rproj__card {
  position: relative;
  flex: 0 1 100%;
  height: 340px;
  border-radius: 16px;
  overflow: hidden;
  outline: none;
}

.rproj__media {
  position: absolute;
  inset: 0;
}

.rproj__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.rproj__card:hover .rproj__img,
.rproj__card:focus-within .rproj__img {
  transform: scale(1.07);
}

.rproj__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  background: linear-gradient(
    to top,
    rgba(11, 18, 32, 0.92) 0%,
    rgba(11, 18, 32, 0.55) 42%,
    rgba(11, 18, 32, 0.05) 78%
  );
  transition: background 0.35s ease;
}

.rproj__card:hover .rproj__overlay,
.rproj__card:focus-within .rproj__overlay {
  background: linear-gradient(
    to top,
    rgba(11, 18, 32, 0.95) 0%,
    rgba(11, 18, 32, 0.8) 55%,
    rgba(11, 18, 32, 0.3) 100%
  );
}

.rproj__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.14);
  color: #6fa1ff;
  font-size: 17px;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.rproj__card:hover .rproj__icon,
.rproj__card:focus-within .rproj__icon {
  opacity: 1;
  transform: translateY(0);
}

.rproj__card-title {
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 8px;
  position: relative;
  z-index: 1;
}

.rproj__card-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0 0 14px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease, margin 0.35s ease;
}

.rproj__card:hover .rproj__card-text,
.rproj__card:focus-within .rproj__card-text {
  max-height: 140px;
  opacity: 1;
}

.rproj__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  background: var(--rproj-blue);
  font-size: 12.5px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  width: fit-content;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  cursor: pointer;
}

.rproj__card:hover .rproj__link,
.rproj__card:focus-within .rproj__link {
  opacity: 1;
  transform: translateY(0);
}

.rproj__link:hover {
  background: #2660d6;
  color: #fff;
}

.rproj__card:focus-visible {
  outline: 3px solid #6fa1ff;
  outline-offset: 2px;
}

.rproj__footer {
  text-align: center;
}

.rproj__cta {
  display: inline-flex;
  align-items: center;
  background: var(--rproj-blue);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.rproj__cta:hover {
  background: #2660d6;
  transform: translateY(-2px);
  color: #fff;
}

@media (min-width: 640px) {
  .rproj__card {
    flex: 0 1 calc((100% - 18px) / 2);
  }
}

@media (min-width: 1024px) {
  .rproj__title { font-size: 30px; }
  .rproj__grid { gap: 20px; }
  .rproj__card {
    flex: 0 1 calc((100% - 40px) / 3);
    height: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rproj__img,
  .rproj__overlay,
  .rproj__icon,
  .rproj__card-text,
  .rproj__link,
  .rproj__cta {
    transition: none;
  }
}
/* SECTION-23*/
.rcost {
  --rcost-blue: #2f6fed;
  --rcost-black: #0b1220;
  --rcost-grey: #5b6472;
  --rcost-border: #e6e9f0;

  background: #ffffff;
  padding: 56px 20px;
  box-sizing: border-box;
}

.rcost__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.rcost__main {
  max-width: 760px;
}

.rcost__title {
  color: var(--rcost-black);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin: 0 0 16px;
}

.rcost__answer {
  color: var(--rcost-grey);
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0 0 28px;
}

.rcost__sub {
  color: var(--rcost-black);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 16px;
}

.rcost__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.rcost__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--rcost-grey);
  font-size: 14px;
  line-height: 1.5;
}

.rcost__list i {
  color: var(--rcost-blue);
  font-size: 12px;
  margin-top: 4px;
  flex-shrink: 0;
}

.rcost__box {
  background: var(--rcost-black);
  border-radius: 16px;
  padding: 28px;
  color: #ffffff;
  align-self: flex-start;
  width: 100%;
}

.rcost__box-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #6fa1ff;
  font-size: 19px;
  margin-bottom: 16px;
}

.rcost__box-title {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 10px;
}

.rcost__box-text {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0 0 20px;
}

.rcost__box-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--rcost-blue);
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 700;
  padding: 13px 20px;
  border-radius: 9px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.rcost__box-btn:hover {
  background: #2660d6;
  transform: translateY(-2px);
  color: #fff;
}

@media (min-width: 700px) {
  .rcost__list { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .rcost__title { font-size: 30px; }
  .rcost__inner { flex-direction: row; align-items: flex-start; gap: 48px; }
  .rcost__box { flex: 0 0 300px; position: sticky; top: 100px; }
}

@media (prefers-reduced-motion: reduce) {
  .rcost__box-btn { transition: none; }
}

/* SECTION-24*/
.rfaq {
  --rfaq-blue: #2f6fed;
  --rfaq-black: #0b1220;
  --rfaq-grey: #5b6472;
  --rfaq-border: #e6e9f0;

  background: #f7f9fc;
  padding: 56px 20px;
  box-sizing: border-box;
}

.rfaq__inner {
  max-width: 840px;
  margin: 0 auto;
}

.rfaq__title {
  color: var(--rfaq-black);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.3px;
  text-align: center;
  margin: 0 0 32px;
}

.rfaq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rfaq__item {
  background: #ffffff;
  border: 1px solid var(--rfaq-border);
  border-radius: 12px;
  overflow: hidden;
}

.rfaq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: none;
  border: none;
  padding: 18px 20px;
  cursor: pointer;
  text-align: left;
}

.rfaq__q-text {
  color: var(--rfaq-black);
  font-size: 15px;
  font-weight: 700;
  margin: 0;
}

.rfaq__toggle {
  color: var(--rfaq-blue);
  font-size: 14px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.rfaq__item--open .rfaq__toggle {
  transform: rotate(45deg);
}

.rfaq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.rfaq__item--open .rfaq__answer {
  max-height: 400px;
}

.rfaq__answer p {
  color: var(--rfaq-grey);
  font-size: 13.5px;
  line-height: 1.7;
  margin: 0;
  padding: 0 20px 18px;
}

.rfaq__question:focus-visible {
  outline: 2px solid var(--rfaq-blue);
  outline-offset: -2px;
}

@media (min-width: 1024px) {
  .rfaq__title { font-size: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  .rfaq__toggle, .rfaq__answer { transition: none; }
}

/* SECTION-25*/
.rfinal {
  --rfinal-blue: #2f6fed;

  background: #06090f;
  padding: 64px 20px;
  box-sizing: border-box;
  text-align: center;
}

.rfinal__inner {
  max-width: 760px;
  margin: 0 auto;
}

.rfinal__title {
  color: #ffffff;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin: 0 0 18px;
}

.rfinal__text {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0 0 30px;
}

.rfinal__cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  margin-bottom: 22px;
}

.rfinal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  width: 100%;
  max-width: 280px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.rfinal__btn--primary {
  background: var(--rfinal-blue);
  color: #ffffff;
  box-shadow: 0 12px 26px -10px rgba(47, 111, 237, 0.6);
}

.rfinal__btn--primary:hover {
  background: #2660d6;
  transform: translateY(-2px);
}

.rfinal__btn--secondary {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.rfinal__btn--secondary:hover {
  border-color: #6fa1ff;
  color: #6fa1ff;
  transform: translateY(-2px);
}

.rfinal__micro {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13.5px;
  margin: 0;
}

@media (min-width: 560px) {
  .rfinal__cta { flex-direction: row; justify-content: center; }
  .rfinal__btn { width: auto; }
}

@media (min-width: 1024px) {
  .rfinal__title { font-size: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  .rfinal__btn { transition: none; }
}
