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

.rpv-section-wrap,
.rpv-section-wrap * {
  box-sizing: border-box;
  min-width: 0;
}

.rpv-section-wrap {
  width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: #211613;
  font-family: Arial, Helvetica, sans-serif;
}

.rpv-section-wrap .rpv-section {
  width: 100% !important;
  overflow: hidden;
}

.rpv-section-wrap .rpv-section-white {
  background: #ffffff;
}

.rpv-section-wrap .rpv-section-tint {
  background: linear-gradient(180deg, #fff7f4 0%, #f8fbfb 100%);
}

.rpv-section-wrap .rpv-container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

.rpv-section-wrap .rpv-heading,
.rpv-section-wrap .rpv-intro,
.rpv-section-wrap .rpv-card,
.rpv-section-wrap .rpv-card h3,
.rpv-section-wrap .rpv-card p {
  text-align: center !important;
}

.rpv-section-wrap .rpv-heading {
  margin: 0 auto;
  color: #211613;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.rpv-section-wrap .rpv-intro {
  margin: 14px auto 0;
  max-width: 760px;
  color: #6a5650;
  line-height: 1.65;
  font-weight: 500;
}

.rpv-section-wrap .rpv-grid {
  display: grid !important;
  align-items: stretch !important;
  width: 100%;
}

.rpv-section-wrap .rpv-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  border: 1px solid #f0d5cc;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 69, 0, 0.08), transparent 34%),
    #ffffff;
  box-shadow: 0 18px 46px rgba(126, 45, 18, 0.11);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background-position 360ms ease;
}

.rpv-section-wrap .rpv-card::after {
  content: "";
  position: absolute;
  inset: auto 20% 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #ff4500, #ff8a3d, #2b9a8f);
  opacity: 0.7;
  transform: translateY(3px);
  transition: transform 260ms ease, opacity 260ms ease;
}

.rpv-section-wrap .rpv-icon {
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 20px;
  background: linear-gradient(135deg, #ff4500 0%, #ff8a3d 58%, #2b9a8f 100%);
  box-shadow: 0 14px 32px rgba(255, 69, 0, 0.22);
  color: #ffffff;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.rpv-section-wrap .rpv-i {
  display: block;
  color: #ffffff;
  line-height: 1;
}

.rpv-section-wrap .rpv-card h3 {
  margin: 0;
  color: #211613;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.rpv-section-wrap .rpv-card p {
  margin: 0 auto;
  color: #6a5650;
  line-height: 1.6;
  font-weight: 500;
}

.rpv-section-wrap .rpv-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 69, 0, 0.42);
  box-shadow: 0 24px 60px rgba(126, 45, 18, 0.17);
}

.rpv-section-wrap .rpv-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.rpv-section-wrap .rpv-card:hover .rpv-icon {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 38px rgba(255, 69, 0, 0.28);
}

.rpv-section-wrap .rpv-card.rpv-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.rpv-section-wrap .rpv-card.rpv-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1024px) {
  .rpv-section-wrap .rpv-section {
    padding: 92px 0;
  }

  .rpv-section-wrap .rpv-container {
    padding: 0 28px;
  }

  .rpv-section-wrap .rpv-heading {
    font-size: 42px;
    white-space: nowrap;
  }

  .rpv-section-wrap .rpv-intro {
    font-size: 17px;
    margin-bottom: 42px;
  }

  .rpv-section-wrap .rpv-grid {
    gap: 26px;
  }

  .rpv-section-wrap .rpv-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .rpv-section-wrap .rpv-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .rpv-section-wrap .rpv-card {
    min-height: 300px;
    padding: 34px 26px 32px;
  }

  .rpv-section-wrap .rpv-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
  }

  .rpv-section-wrap .rpv-i {
    font-size: 30px;
  }

  .rpv-section-wrap .rpv-card h3 {
    font-size: 20px;
    margin-bottom: 13px;
  }

  .rpv-section-wrap .rpv-card p {
    font-size: 15px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .rpv-section-wrap .rpv-section {
    padding: 74px 0;
  }

  .rpv-section-wrap .rpv-container {
    padding: 0 24px;
  }

  .rpv-section-wrap .rpv-heading {
    font-size: 34px;
  }

  .rpv-section-wrap .rpv-intro {
    font-size: 16px;
    margin-bottom: 34px;
  }

  .rpv-section-wrap .rpv-grid,
  .rpv-section-wrap .rpv-grid-3,
  .rpv-section-wrap .rpv-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .rpv-section-wrap .rpv-card {
    min-height: 270px;
    padding: 30px 24px 28px;
  }

  .rpv-section-wrap .rpv-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 22px;
  }

  .rpv-section-wrap .rpv-i {
    font-size: 27px;
  }

  .rpv-section-wrap .rpv-card h3 {
    font-size: 19px;
    margin-bottom: 12px;
  }

  .rpv-section-wrap .rpv-card p {
    font-size: 14.5px;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .rpv-section-wrap .rpv-section {
    padding: 56px 0;
  }

  .rpv-section-wrap .rpv-container {
    padding: 0 16px;
  }

  .rpv-section-wrap .rpv-heading {
    font-size: 28px;
    max-width: 360px;
  }

  .rpv-section-wrap .rpv-intro {
    font-size: 14.5px;
    line-height: 1.55;
    margin-bottom: 26px;
  }

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

  .rpv-section-wrap .rpv-card {
    min-height: 235px;
    border-radius: 18px;
    padding: 22px 14px 20px;
  }

  .rpv-section-wrap .rpv-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    margin-bottom: 16px;
  }

  .rpv-section-wrap .rpv-i {
    font-size: 22px;
  }

  .rpv-section-wrap .rpv-card h3 {
    font-size: 16px;
    margin-bottom: 9px;
  }

  .rpv-section-wrap .rpv-card p {
    font-size: 13px;
    line-height: 1.48;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .rpv-section-wrap .rpv-section {
    padding: 48px 0;
  }

  .rpv-section-wrap .rpv-container {
    padding: 0 12px;
  }

  .rpv-section-wrap .rpv-heading {
    font-size: 25px;
    max-width: 320px;
  }

  .rpv-section-wrap .rpv-intro {
    font-size: 13.5px;
    line-height: 1.5;
    margin-bottom: 22px;
  }

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

  .rpv-section-wrap .rpv-card {
    min-height: 225px;
    border-radius: 16px;
    padding: 20px 12px 18px;
  }

  .rpv-section-wrap .rpv-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    margin-bottom: 14px;
  }

  .rpv-section-wrap .rpv-i {
    font-size: 20px;
  }

  .rpv-section-wrap .rpv-card h3 {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .rpv-section-wrap .rpv-card p {
    font-size: 12.5px;
    line-height: 1.44;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .rpv-section-wrap .rpv-section {
    padding: 42px 0;
  }

  .rpv-section-wrap .rpv-container {
    padding: 0 10px;
  }

  .rpv-section-wrap .rpv-heading {
    font-size: 22px;
    max-width: 285px;
  }

  .rpv-section-wrap .rpv-intro {
    font-size: 12.8px;
    line-height: 1.45;
    margin-bottom: 18px;
  }

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

  .rpv-section-wrap .rpv-card {
    min-height: 218px;
    border-radius: 14px;
    padding: 18px 9px 16px;
  }

  .rpv-section-wrap .rpv-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    margin-bottom: 12px;
  }

  .rpv-section-wrap .rpv-i {
    font-size: 18px;
  }

  .rpv-section-wrap .rpv-card h3 {
    font-size: 14px;
    margin-bottom: 7px;
  }

  .rpv-section-wrap .rpv-card p {
    font-size: 12px;
    line-height: 1.4;
  }
}