@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

.rvu-section-shell,
.rvu-section-shell * {
  box-sizing: border-box;
}

.rvu-section-shell {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: #202124;
  font-family: inherit;
}

.rvu-section-shell .rvu-band {
  width: 100% !important;
}

.rvu-section-shell .rvu-band-white {
  background: #ffffff;
}

.rvu-section-shell .rvu-band-tint {
  background: linear-gradient(180deg, #fff7f4 0%, #fffaf8 100%);
}

.rvu-section-shell .rvu-container {
  max-width: 1200px !important;
  width: 100% !important;
  margin: 0 auto !important;
  min-width: 0;
}

.rvu-section-shell .rvu-heading,
.rvu-section-shell .rvu-intro,
.rvu-section-shell .rvu-card-title,
.rvu-section-shell .rvu-card-text {
  text-align: center !important;
}

.rvu-section-shell .rvu-heading {
  margin: 0 auto;
  color: #1f2328;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.rvu-section-shell .rvu-intro {
  max-width: 720px;
  margin: 14px auto 0;
  color: #5d646d;
  line-height: 1.65;
}

.rvu-section-shell .rvu-grid {
  display: grid !important;
  align-items: stretch !important;
  min-width: 0;
}

.rvu-section-shell .rvu-card {
  position: relative;
  z-index: 1;
  height: 100% !important;
  min-width: 0;
  overflow: hidden;
  text-align: center !important;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(218, 73, 48, 0.16);
  box-shadow: 0 18px 46px rgba(106, 36, 28, 0.09);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
}

.rvu-section-shell .rvu-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 69, 0, 0.13), transparent 46%);
  transition: opacity 260ms ease, transform 260ms ease;
  transform: translateY(10px);
}

.rvu-section-shell .rvu-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 69, 0, 0.36);
  box-shadow: 0 24px 60px rgba(106, 36, 28, 0.15);
}

.rvu-section-shell .rvu-card:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.rvu-section-shell .rvu-icon {
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #ff4500 0%, #e23d28 48%, #ffb000 100%);
  box-shadow: 0 12px 30px rgba(255, 69, 0, 0.24);
  transition: transform 260ms ease, box-shadow 260ms ease;
  text-align: center !important;
}

.rvu-section-shell .rvu-card:hover .rvu-icon {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 36px rgba(255, 69, 0, 0.3);
}

.rvu-section-shell .rvu-i {
  color: #ffffff;
  line-height: 1;
  text-align: center !important;
}

.rvu-section-shell .rvu-card-title {
  margin: 0;
  color: #24272c;
  font-weight: 760;
  line-height: 1.25;
  letter-spacing: 0;
}

.rvu-section-shell .rvu-card-text {
  margin: 0 auto;
  color: #646b74;
  line-height: 1.58;
}

.rvu-section-shell .rvu-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.rvu-section-shell .rvu-reveal.rvu-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

@media (min-width: 1024px) {
  .rvu-section-shell .rvu-band {
    padding: 88px 24px;
  }

  .rvu-section-shell .rvu-heading {
    font-size: 40px;
    max-width: 980px;
    white-space: nowrap;
  }

  .rvu-section-shell .rvu-intro {
    font-size: 17px;
  }

  .rvu-section-shell .rvu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px;
    margin-top: 42px;
  }

  .rvu-section-shell .rvu-card {
    min-height: 294px;
    padding: 34px 28px;
    border-radius: 22px;
  }

  .rvu-section-shell .rvu-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 24px;
  }

  .rvu-section-shell .rvu-i {
    font-size: 28px;
  }

  .rvu-section-shell .rvu-card-title {
    font-size: 21px;
  }

  .rvu-section-shell .rvu-card-text {
    margin-top: 13px;
    font-size: 15.5px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .rvu-section-shell .rvu-band {
    padding: 72px 22px;
  }

  .rvu-section-shell .rvu-heading {
    font-size: 34px;
  }

  .rvu-section-shell .rvu-intro {
    font-size: 16px;
  }

  .rvu-section-shell .rvu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 20px;
    margin-top: 36px;
  }

  .rvu-section-shell .rvu-card {
    min-height: 268px;
    padding: 30px 24px;
    border-radius: 20px;
  }

  .rvu-section-shell .rvu-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 21px;
  }

  .rvu-section-shell .rvu-i {
    font-size: 25px;
  }

  .rvu-section-shell .rvu-card-title {
    font-size: 19px;
  }

  .rvu-section-shell .rvu-card-text {
    margin-top: 11px;
    font-size: 14.5px;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .rvu-section-shell .rvu-band {
    padding: 54px 16px;
  }

  .rvu-section-shell .rvu-heading {
    font-size: 28px;
    max-width: 390px;
  }

  .rvu-section-shell .rvu-intro {
    font-size: 14.5px;
  }

  .rvu-section-shell .rvu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px;
    margin-top: 28px;
  }

  .rvu-section-shell .rvu-card {
    min-height: 230px;
    padding: 22px 15px;
    border-radius: 16px;
  }

  .rvu-section-shell .rvu-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
  }

  .rvu-section-shell .rvu-i {
    font-size: 21px;
  }

  .rvu-section-shell .rvu-card-title {
    font-size: 16px;
  }

  .rvu-section-shell .rvu-card-text {
    margin-top: 9px;
    font-size: 13px;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .rvu-section-shell .rvu-band {
    padding: 48px 12px;
  }

  .rvu-section-shell .rvu-heading {
    font-size: 25px;
    max-width: 330px;
  }

  .rvu-section-shell .rvu-intro {
    font-size: 13.5px;
  }

  .rvu-section-shell .rvu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px;
    margin-top: 24px;
  }

  .rvu-section-shell .rvu-card {
    min-height: 220px;
    padding: 19px 12px;
    border-radius: 15px;
  }

  .rvu-section-shell .rvu-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 14px;
  }

  .rvu-section-shell .rvu-i {
    font-size: 19px;
  }

  .rvu-section-shell .rvu-card-title {
    font-size: 15px;
  }

  .rvu-section-shell .rvu-card-text {
    margin-top: 8px;
    font-size: 12.5px;
    line-height: 1.5;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .rvu-section-shell .rvu-band {
    padding: 42px 10px;
  }

  .rvu-section-shell .rvu-heading {
    font-size: 22px;
    max-width: 292px;
  }

  .rvu-section-shell .rvu-intro {
    font-size: 13px;
    line-height: 1.55;
  }

  .rvu-section-shell .rvu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px;
    margin-top: 22px;
  }

  .rvu-section-shell .rvu-card {
    min-height: 214px;
    padding: 17px 10px;
    border-radius: 14px;
  }

  .rvu-section-shell .rvu-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
  }

  .rvu-section-shell .rvu-i {
    font-size: 17px;
  }

  .rvu-section-shell .rvu-card-title {
    font-size: 14px;
  }

  .rvu-section-shell .rvu-card-text {
    margin-top: 7px;
    font-size: 12px;
    line-height: 1.45;
  }
}

@media (max-width: 319px) {
  .rvu-section-shell .rvu-band {
    padding: 38px 10px;
  }

  .rvu-section-shell .rvu-grid {
    grid-template-columns: 1fr !important;
    gap: 10px;
    margin-top: 20px;
  }

  .rvu-section-shell .rvu-heading {
    font-size: 21px;
  }

  .rvu-section-shell .rvu-intro {
    font-size: 13px;
  }

  .rvu-section-shell .rvu-card {
    min-height: 210px;
    padding: 18px 12px;
    border-radius: 14px;
  }

  .rvu-section-shell .rvu-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
  }

  .rvu-section-shell .rvu-i {
    font-size: 17px;
  }

  .rvu-section-shell .rvu-card-title {
    font-size: 14px;
  }

  .rvu-section-shell .rvu-card-text {
    margin-top: 7px;
    font-size: 12px;
  }
}