@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-viewer-section,
.rpv-viewer-section * {
  box-sizing: border-box;
  min-width: 0;
}

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

.rpv-viewer-section .rpv-block {
  width: 100% !important;
}

.rpv-viewer-section .rpv-block-one,
.rpv-viewer-section .rpv-block-three {
  background: #ffffff;
}

.rpv-viewer-section .rpv-block-two {
  background: linear-gradient(180deg, #fff6f2 0%, #fffaf7 100%);
}

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

.rpv-viewer-section .rpv-heading {
  margin: 0 auto;
  color: #201b1b;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  text-align: center;
}

.rpv-viewer-section .rpv-intro {
  max-width: 760px;
  margin: 14px auto 0;
  color: #675d59;
  line-height: 1.65;
  text-align: center;
}

.rpv-viewer-section .rpv-grid {
  display: grid !important;
  align-items: stretch !important;
}

.rpv-viewer-section .rpv-card {
  height: 100% !important;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #f0d8cf;
  box-shadow: 0 18px 45px rgba(205, 69, 28, 0.11);
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
}

.rpv-viewer-section .rpv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 69, 0, 0.13), transparent 42%);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.rpv-viewer-section .rpv-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 69, 0, 0.34);
  box-shadow: 0 24px 60px rgba(205, 69, 28, 0.18);
  background: #ffffff;
}

.rpv-viewer-section .rpv-card:hover::before {
  opacity: 1;
}

.rpv-viewer-section .rpv-icon {
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff4500 0%, #ff8a3d 100%);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(255, 69, 0, 0.24);
  transition: transform 260ms ease, box-shadow 260ms ease;
  position: relative;
  z-index: 1;
}

.rpv-viewer-section .rpv-card:hover .rpv-icon {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 38px rgba(255, 69, 0, 0.3);
}

.rpv-viewer-section .rpv-i {
  color: #ffffff;
  line-height: 1;
  text-align: center;
}

.rpv-viewer-section .rpv-card h3 {
  margin: 20px 0 0;
  color: #241f1f;
  font-weight: 760;
  line-height: 1.25;
  letter-spacing: 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.rpv-viewer-section .rpv-card p {
  margin: 12px auto 0;
  color: #6a5f5a;
  line-height: 1.58;
  text-align: center;
  position: relative;
  z-index: 1;
}

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

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

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

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

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

  .rpv-viewer-section .rpv-intro {
    font-size: 17px;
  }

  .rpv-viewer-section .rpv-grid {
    gap: 24px;
    margin-top: 44px;
  }

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

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

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

  .rpv-viewer-section .rpv-icon {
    width: 70px;
    height: 70px;
  }

  .rpv-viewer-section .rpv-i {
    font-size: 28px;
  }

  .rpv-viewer-section .rpv-card h3 {
    font-size: 21px;
  }

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

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

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

  .rpv-viewer-section .rpv-heading {
    font-size: 35px;
  }

  .rpv-viewer-section .rpv-intro {
    font-size: 16px;
  }

  .rpv-viewer-section .rpv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 38px;
  }

  .rpv-viewer-section .rpv-card {
    min-height: 270px;
    padding: 30px 24px 26px;
    border-radius: 20px;
  }

  .rpv-viewer-section .rpv-icon {
    width: 64px;
    height: 64px;
  }

  .rpv-viewer-section .rpv-i {
    font-size: 25px;
  }

  .rpv-viewer-section .rpv-card h3 {
    font-size: 20px;
  }

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

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

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

  .rpv-viewer-section .rpv-heading {
    font-size: 29px;
  }

  .rpv-viewer-section .rpv-intro {
    font-size: 14.5px;
  }

  .rpv-viewer-section .rpv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
  }

  .rpv-viewer-section .rpv-card {
    min-height: 232px;
    padding: 22px 14px 20px;
    border-radius: 17px;
  }

  .rpv-viewer-section .rpv-icon {
    width: 54px;
    height: 54px;
    border-radius: 15px;
  }

  .rpv-viewer-section .rpv-i {
    font-size: 21px;
  }

  .rpv-viewer-section .rpv-card h3 {
    font-size: 17px;
    margin-top: 16px;
  }

  .rpv-viewer-section .rpv-card p {
    font-size: 13px;
    margin-top: 9px;
  }
}

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

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

  .rpv-viewer-section .rpv-heading {
    font-size: 25px;
  }

  .rpv-viewer-section .rpv-intro {
    font-size: 13.5px;
    line-height: 1.55;
  }

  .rpv-viewer-section .rpv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
  }

  .rpv-viewer-section .rpv-card {
    min-height: 222px;
    padding: 19px 11px 18px;
    border-radius: 15px;
  }

  .rpv-viewer-section .rpv-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .rpv-viewer-section .rpv-i {
    font-size: 19px;
  }

  .rpv-viewer-section .rpv-card h3 {
    font-size: 15.5px;
    margin-top: 14px;
  }

  .rpv-viewer-section .rpv-card p {
    font-size: 12.2px;
    line-height: 1.48;
    margin-top: 8px;
  }
}

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

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

  .rpv-viewer-section .rpv-heading {
    font-size: 22px;
  }

  .rpv-viewer-section .rpv-intro {
    font-size: 12.8px;
    line-height: 1.5;
  }

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

  .rpv-viewer-section .rpv-card {
    min-height: 214px;
    padding: 17px 9px 16px;
    border-radius: 14px;
  }

  .rpv-viewer-section .rpv-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  .rpv-viewer-section .rpv-i {
    font-size: 17px;
  }

  .rpv-viewer-section .rpv-card h3 {
    font-size: 14px;
    margin-top: 13px;
  }

  .rpv-viewer-section .rpv-card p {
    font-size: 11.5px;
    line-height: 1.45;
    margin-top: 7px;
  }
}