@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');

.rpv26-wrapper,
.rpv26-wrapper * {
  box-sizing: border-box;
  min-width: 0;
}

.rpv26-wrapper {
  width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: #202226;
  font-family: inherit;
}

.rpv26-wrapper .rpv26-section {
  width: 100% !important;
}

.rpv26-wrapper .rpv26-section-white {
  background: #ffffff;
}

.rpv26-wrapper .rpv26-section-tint {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 69, 0, 0.08), transparent 34%),
    linear-gradient(180deg, #fff8f4 0%, #f7faf8 100%);
}

.rpv26-wrapper .rpv26-container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

.rpv26-wrapper .rpv26-heading,
.rpv26-wrapper .rpv26-intro,
.rpv26-wrapper .rpv26-card-title,
.rpv26-wrapper .rpv26-card-text {
  text-align: center !important;
}

.rpv26-wrapper .rpv26-heading {
  margin: 0 auto;
  color: #191b1f;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.rpv26-wrapper .rpv26-intro {
  margin: 14px auto 0;
  max-width: 760px;
  color: #5c636b;
  line-height: 1.65;
  font-weight: 450;
}

.rpv26-wrapper .rpv26-grid {
  display: grid !important;
  align-items: stretch !important;
}

.rpv26-wrapper .rpv26-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100% !important;
  text-align: center !important;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(255, 69, 0, 0.28), rgba(0, 121, 211, 0.2)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 18px 46px rgba(35, 41, 49, 0.08);
  border-radius: 24px;
  overflow: hidden;
  transform: translateY(18px);
  opacity: 1;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease,
    background 260ms ease;
}

.rpv26-wrapper .rpv26-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 69, 0, 0.08), rgba(0, 121, 211, 0.045));
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.rpv26-wrapper .rpv26-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 62px rgba(255, 69, 0, 0.16);
}

.rpv26-wrapper .rpv26-card:hover::before {
  opacity: 1;
}

.rpv26-wrapper .rpv26-card:hover .rpv26-icon {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 34px rgba(255, 69, 0, 0.22);
}

.rpv26-wrapper .rpv26-card:hover .rpv26-i {
  transform: translateY(-2px);
}

.rpv26-wrapper .rpv26-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: #ffffff;
  background: linear-gradient(135deg, #ff4500 0%, #ff7a3d 48%, #0079d3 100%);
  border-radius: 22px;
  box-shadow: 0 14px 30px rgba(255, 69, 0, 0.18);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease;
}

.rpv26-wrapper .rpv26-i {
  display: block;
  line-height: 1;
  color: #ffffff;
  transition: transform 260ms ease;
}

.rpv26-wrapper .rpv26-card-title {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #1d2025;
  font-weight: 760;
  line-height: 1.25;
  letter-spacing: 0;
}

.rpv26-wrapper .rpv26-card-text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #626a72;
  line-height: 1.55;
  font-weight: 430;
}

.rpv26-wrapper .rpv26-card.rpv26-reveal-ready {
  opacity: 0;
}

.rpv26-wrapper .rpv26-card.rpv26-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1024px) {
  .rpv26-wrapper .rpv26-section {
    padding: 86px 0;
  }

  .rpv26-wrapper .rpv26-container {
    padding: 0 28px;
  }

  .rpv26-wrapper .rpv26-heading {
    font-size: 44px;
    max-width: 980px;
    white-space: nowrap;
  }

  .rpv26-wrapper .rpv26-intro {
    font-size: 18px;
    margin-bottom: 42px;
  }

  .rpv26-wrapper .rpv26-grid {
    gap: 24px;
  }

  .rpv26-wrapper .rpv26-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .rpv26-wrapper .rpv26-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .rpv26-wrapper .rpv26-card {
    min-height: 300px;
    padding: 34px 28px;
  }

  .rpv26-wrapper .rpv26-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 24px;
    font-size: 27px;
  }

  .rpv26-wrapper .rpv26-card-title {
    font-size: 21px;
    margin-bottom: 12px;
  }

  .rpv26-wrapper .rpv26-card-text {
    font-size: 15.5px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .rpv26-wrapper .rpv26-section {
    padding: 68px 0;
  }

  .rpv26-wrapper .rpv26-container {
    padding: 0 24px;
  }

  .rpv26-wrapper .rpv26-heading {
    font-size: 36px;
    max-width: 760px;
  }

  .rpv26-wrapper .rpv26-intro {
    font-size: 16.5px;
    margin-bottom: 34px;
  }

  .rpv26-wrapper .rpv26-grid,
  .rpv26-wrapper .rpv26-grid-3,
  .rpv26-wrapper .rpv26-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .rpv26-wrapper .rpv26-card {
    min-height: 270px;
    padding: 30px 24px;
    border-radius: 22px;
  }

  .rpv26-wrapper .rpv26-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 20px;
    font-size: 24px;
  }

  .rpv26-wrapper .rpv26-card-title {
    font-size: 19px;
    margin-bottom: 10px;
  }

  .rpv26-wrapper .rpv26-card-text {
    font-size: 14.5px;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .rpv26-wrapper .rpv26-section {
    padding: 52px 0;
  }

  .rpv26-wrapper .rpv26-container {
    padding: 0 16px;
  }

  .rpv26-wrapper .rpv26-heading {
    font-size: 29px;
    max-width: 430px;
  }

  .rpv26-wrapper .rpv26-intro {
    font-size: 14.5px;
    line-height: 1.55;
    margin-bottom: 24px;
  }

  .rpv26-wrapper .rpv26-grid,
  .rpv26-wrapper .rpv26-grid-3,
  .rpv26-wrapper .rpv26-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .rpv26-wrapper .rpv26-card {
    min-height: 230px;
    padding: 20px 14px;
    border-radius: 18px;
  }

  .rpv26-wrapper .rpv26-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    border-radius: 17px;
    font-size: 20px;
  }

  .rpv26-wrapper .rpv26-card-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .rpv26-wrapper .rpv26-card-text {
    font-size: 13px;
    line-height: 1.45;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .rpv26-wrapper .rpv26-section {
    padding: 46px 0;
  }

  .rpv26-wrapper .rpv26-container {
    padding: 0 12px;
  }

  .rpv26-wrapper .rpv26-heading {
    font-size: 26px;
    max-width: 360px;
  }

  .rpv26-wrapper .rpv26-intro {
    font-size: 13.8px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .rpv26-wrapper .rpv26-grid,
  .rpv26-wrapper .rpv26-grid-3,
  .rpv26-wrapper .rpv26-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .rpv26-wrapper .rpv26-card {
    min-height: 220px;
    padding: 18px 12px;
    border-radius: 16px;
  }

  .rpv26-wrapper .rpv26-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 13px;
    border-radius: 15px;
    font-size: 18px;
  }

  .rpv26-wrapper .rpv26-card-title {
    font-size: 15px;
    margin-bottom: 7px;
  }

  .rpv26-wrapper .rpv26-card-text {
    font-size: 12.4px;
    line-height: 1.42;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .rpv26-wrapper .rpv26-section {
    padding: 40px 0;
  }

  .rpv26-wrapper .rpv26-container {
    padding: 0 10px;
  }

  .rpv26-wrapper .rpv26-heading {
    font-size: 23px;
    max-width: 300px;
  }

  .rpv26-wrapper .rpv26-intro {
    font-size: 13px;
    line-height: 1.45;
    margin-bottom: 18px;
  }

  .rpv26-wrapper .rpv26-grid,
  .rpv26-wrapper .rpv26-grid-3,
  .rpv26-wrapper .rpv26-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .rpv26-wrapper .rpv26-card {
    min-height: 214px;
    padding: 16px 9px;
    border-radius: 14px;
  }

  .rpv26-wrapper .rpv26-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
    border-radius: 14px;
    font-size: 16px;
  }

  .rpv26-wrapper .rpv26-card-title {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .rpv26-wrapper .rpv26-card-text {
    font-size: 11.6px;
    line-height: 1.38;
  }
}