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

.rssv-wrapper,
.rssv-wrapper * {
  box-sizing: border-box;
}

.rssv-wrapper {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: #17201d;
  font-family: Arial, Helvetica, sans-serif;
}

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

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

.rssv-wrapper .rssv-section-tint {
  background: linear-gradient(180deg, #fff7f3 0%, #f6fbf8 100%);
}

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

.rssv-wrapper .rssv-heading {
  margin: 0 auto;
  color: #17201d;
  text-align: center;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.rssv-wrapper .rssv-intro {
  margin: 0 auto;
  color: #5b6863;
  text-align: center;
  line-height: 1.65;
  max-width: 760px;
}

.rssv-wrapper .rssv-grid {
  display: grid !important;
  align-items: stretch !important;
  width: 100%;
  min-width: 0;
}

.rssv-wrapper .rssv-card {
  position: relative;
  height: 100% !important;
  min-width: 0;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #fffdfb 100%);
  border: 1px solid #eaded7;
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(129, 66, 36, 0.1);
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background-position 260ms ease;
}

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

.rssv-wrapper .rssv-card-tint {
  background: linear-gradient(180deg, #ffffff 0%, #fff8f4 100%);
}

.rssv-wrapper .rssv-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 69, 0, 0.36);
  box-shadow: 0 24px 56px rgba(129, 66, 36, 0.16);
}

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

.rssv-wrapper .rssv-card:hover .rssv-icon {
  transform: translateY(-4px);
  background: linear-gradient(135deg, #ff4500 0%, #ff8a4d 100%);
  box-shadow: 0 16px 30px rgba(255, 69, 0, 0.25);
}

.rssv-wrapper .rssv-card:hover .rssv-i {
  color: #ffffff;
  transform: scale(1.06);
}

.rssv-wrapper .rssv-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  margin-left: auto;
  margin-right: auto;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.12) 0%, rgba(25, 121, 86, 0.1) 100%);
  color: #ff4500;
  transition: transform 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.rssv-wrapper .rssv-i {
  color: #ff4500;
  line-height: 1;
  transition: color 260ms ease, transform 260ms ease;
}

.rssv-wrapper .rssv-card-title {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #17201d;
  text-align: center;
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: 0;
}

.rssv-wrapper .rssv-card-text {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  color: #61706a;
  text-align: center;
  line-height: 1.6;
}

.rssv-wrapper.rssv-ready .rssv-card {
  opacity: 0;
  transform: translateY(18px);
}

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

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

  .rssv-wrapper .rssv-container {
    padding: 0 28px !important;
  }

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

  .rssv-wrapper .rssv-intro {
    margin-top: 16px;
    font-size: 18px;
  }

  .rssv-wrapper .rssv-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    margin-top: 42px;
  }

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

  .rssv-wrapper .rssv-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 24px;
  }

  .rssv-wrapper .rssv-i {
    font-size: 28px;
  }

  .rssv-wrapper .rssv-card-title {
    font-size: 21px;
    margin-bottom: 14px;
  }

  .rssv-wrapper .rssv-card-text {
    font-size: 16px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .rssv-wrapper .rssv-section {
    padding: 70px 0 !important;
  }

  .rssv-wrapper .rssv-container {
    padding: 0 24px !important;
  }

  .rssv-wrapper .rssv-heading {
    font-size: 34px;
    max-width: 760px;
  }

  .rssv-wrapper .rssv-intro {
    margin-top: 14px;
    font-size: 17px;
  }

  .rssv-wrapper .rssv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 36px;
  }

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

  .rssv-wrapper .rssv-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 20px;
    border-radius: 17px;
  }

  .rssv-wrapper .rssv-i {
    font-size: 25px;
  }

  .rssv-wrapper .rssv-card-title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .rssv-wrapper .rssv-card-text {
    font-size: 15px;
  }
}

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

  .rssv-wrapper .rssv-container {
    padding: 0 16px !important;
  }

  .rssv-wrapper .rssv-heading {
    font-size: 28px;
    max-width: 440px;
  }

  .rssv-wrapper .rssv-intro {
    margin-top: 12px;
    font-size: 15px;
  }

  .rssv-wrapper .rssv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
  }

  .rssv-wrapper .rssv-card {
    min-height: 232px;
    padding: 22px 14px;
    border-radius: 17px;
  }

  .rssv-wrapper .rssv-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    border-radius: 15px;
  }

  .rssv-wrapper .rssv-i {
    font-size: 21px;
  }

  .rssv-wrapper .rssv-card-title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .rssv-wrapper .rssv-card-text {
    font-size: 13px;
    line-height: 1.5;
  }
}

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

  .rssv-wrapper .rssv-container {
    padding: 0 12px !important;
  }

  .rssv-wrapper .rssv-heading {
    font-size: 25px;
    max-width: 350px;
  }

  .rssv-wrapper .rssv-intro {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.55;
  }

  .rssv-wrapper .rssv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
  }

  .rssv-wrapper .rssv-card {
    min-height: 224px;
    padding: 20px 12px;
    border-radius: 16px;
  }

  .rssv-wrapper .rssv-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
    border-radius: 14px;
  }

  .rssv-wrapper .rssv-i {
    font-size: 20px;
  }

  .rssv-wrapper .rssv-card-title {
    font-size: 15px;
    margin-bottom: 9px;
  }

  .rssv-wrapper .rssv-card-text {
    font-size: 12.5px;
    line-height: 1.48;
  }
}

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

  .rssv-wrapper .rssv-container {
    padding: 0 10px !important;
  }

  .rssv-wrapper .rssv-heading {
    font-size: 22px;
    max-width: 300px;
  }

  .rssv-wrapper .rssv-intro {
    margin-top: 9px;
    font-size: 13px;
    line-height: 1.5;
  }

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

  .rssv-wrapper .rssv-card {
    min-height: 216px;
    padding: 18px 9px;
    border-radius: 14px;
  }

  .rssv-wrapper .rssv-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
    border-radius: 13px;
  }

  .rssv-wrapper .rssv-i {
    font-size: 18px;
  }

  .rssv-wrapper .rssv-card-title {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .rssv-wrapper .rssv-card-text {
    font-size: 12px;
    line-height: 1.42;
  }
}