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

.rsv26-root,
.rsv26-root * {
  box-sizing: border-box;
}

.rsv26-root {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #241f1c;
  background: #ffffff;
}

.rsv26-section {
  width: 100% !important;
  max-width: 100% !important;
  text-align: center;
  overflow: hidden;
}

.rsv26-section-white {
  background: #ffffff;
}

.rsv26-section-tint {
  background: linear-gradient(180deg, #fff7f2 0%, #f8faf9 100%);
}

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

.rsv26-heading {
  margin: 0 auto;
  max-width: 980px;
  text-align: center;
  color: #241f1c;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.rsv26-intro {
  margin: 0 auto;
  max-width: 760px;
  text-align: center;
  color: #635850;
  line-height: 1.7;
  font-weight: 450;
}

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

.rsv26-card {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  height: 100% !important;
  min-width: 0;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #fffdfb 100%);
  border: 1px solid #efd7ca;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(120, 55, 26, 0.11);
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
}

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

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

.rsv26-card:hover {
  transform: translateY(-7px);
  border-color: #ff8a5c;
  box-shadow: 0 24px 60px rgba(255, 69, 0, 0.18);
}

.rsv26-card:hover::before {
  opacity: 1;
}

.rsv26-icon {
  position: relative;
  display: grid;
  place-items: center;
  margin-left: auto;
  margin-right: auto;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff4500 0%, #ff8a5c 100%);
  box-shadow: 0 14px 30px rgba(255, 69, 0, 0.24);
  color: #ffffff;
  text-align: center;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

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

.rsv26-i {
  display: block;
  color: #ffffff;
  line-height: 1;
  text-align: center;
}

.rsv26-card-title {
  position: relative;
  margin: 0;
  color: #241f1c;
  text-align: center;
  font-weight: 760;
  line-height: 1.25;
  letter-spacing: 0;
}

.rsv26-card-text {
  position: relative;
  margin: 0 auto;
  color: #685f58;
  text-align: center;
  line-height: 1.62;
  font-weight: 430;
}

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

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

.rsv26-card.rsv26-reveal.rsv26-visible:hover {
  transform: translateY(-7px);
}

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

  .rsv26-container {
    padding: 0 28px;
  }

  .rsv26-heading {
    font-size: 42px;
  }

  .rsv26-intro {
    margin-top: 18px;
    font-size: 17px;
  }

  .rsv26-grid {
    gap: 26px;
    margin-top: 46px;
  }

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

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

  .rsv26-card {
    min-height: 292px;
    padding: 34px 28px 30px;
  }

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

  .rsv26-i {
    font-size: 27px;
  }

  .rsv26-card-title {
    font-size: 20px;
  }

  .rsv26-card-text {
    margin-top: 13px;
    font-size: 15px;
  }
}

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

  .rsv26-container {
    padding: 0 24px;
  }

  .rsv26-heading {
    font-size: 34px;
  }

  .rsv26-intro {
    margin-top: 15px;
    font-size: 16px;
  }

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

  .rsv26-card {
    min-height: 268px;
    padding: 30px 24px 28px;
    border-radius: 20px;
  }

  .rsv26-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 21px;
  }

  .rsv26-i {
    font-size: 24px;
  }

  .rsv26-card-title {
    font-size: 19px;
  }

  .rsv26-card-text {
    margin-top: 12px;
    font-size: 14.5px;
  }
}

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

  .rsv26-container {
    padding: 0 16px;
  }

  .rsv26-heading {
    max-width: 420px;
    font-size: 28px;
  }

  .rsv26-intro {
    margin-top: 12px;
    font-size: 14.5px;
  }

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

  .rsv26-card {
    min-height: 230px;
    padding: 22px 14px 20px;
    border-radius: 17px;
  }

  .rsv26-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
  }

  .rsv26-i {
    font-size: 20px;
  }

  .rsv26-card-title {
    font-size: 16px;
  }

  .rsv26-card-text {
    margin-top: 9px;
    font-size: 13px;
    line-height: 1.52;
  }
}

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

  .rsv26-container {
    padding: 0 12px;
  }

  .rsv26-heading {
    max-width: 360px;
    font-size: 25px;
  }

  .rsv26-intro {
    margin-top: 10px;
    font-size: 13.5px;
    line-height: 1.58;
  }

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

  .rsv26-card {
    min-height: 220px;
    padding: 19px 11px 18px;
    border-radius: 15px;
  }

  .rsv26-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
  }

  .rsv26-i {
    font-size: 18px;
  }

  .rsv26-card-title {
    font-size: 14.5px;
  }

  .rsv26-card-text {
    margin-top: 8px;
    font-size: 12.5px;
    line-height: 1.46;
  }
}

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

  .rsv26-container {
    padding: 0 10px;
  }

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

  .rsv26-intro {
    margin-top: 9px;
    font-size: 12.5px;
    line-height: 1.52;
  }

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

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

  .rsv26-icon {
    width: 43px;
    height: 43px;
    margin-bottom: 12px;
  }

  .rsv26-i {
    font-size: 16px;
  }

  .rsv26-card-title {
    font-size: 13.5px;
    line-height: 1.22;
  }

  .rsv26-card-text {
    margin-top: 7px;
    font-size: 11.5px;
    line-height: 1.42;
  }
}

@media (max-width: 319px) {
  .rsv26-section {
    padding: 36px 0;
  }

  .rsv26-container {
    padding: 0 10px;
  }

  .rsv26-heading {
    font-size: 21px;
  }

  .rsv26-intro {
    margin-top: 9px;
    font-size: 12.5px;
  }

  .rsv26-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }

  .rsv26-card {
    min-height: 210px;
    padding: 17px 12px;
  }

  .rsv26-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
  }

  .rsv26-i {
    font-size: 16px;
  }

  .rsv26-card-title {
    font-size: 14px;
  }

  .rsv26-card-text {
    margin-top: 7px;
    font-size: 12px;
  }
}