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

.rlv-2026-wrap,
.rlv-2026-wrap * {
  box-sizing: border-box;
  min-width: 0;
}

.rlv-2026-wrap {
  width: 100% !important;
  overflow: hidden;
  background: #ffffff;
  color: #1b2524;
  font-family: inherit;
}

.rlv-2026-section {
  width: 100% !important;
}

.rlv-2026-white {
  background: #ffffff;
}

.rlv-2026-tint {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 69, 0, 0.08), transparent 34%),
    linear-gradient(180deg, #fff8f5 0%, #f6fbf9 100%);
}

.rlv-2026-container {
  max-width: 1200px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding-left: 24px;
  padding-right: 24px;
}

.rlv-2026-wrap h2 {
  margin: 0 auto;
  max-width: 980px;
  text-align: center !important;
  color: #15211f;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.rlv-2026-wrap h2 span {
  color: #ff4500;
}

.rlv-2026-intro {
  margin: 16px auto 0;
  max-width: 760px;
  text-align: center !important;
  color: #52615f;
  line-height: 1.65;
  font-weight: 500;
}

.rlv-2026-grid {
  display: grid !important;
  align-items: stretch !important;
  width: 100%;
}

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

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

.rlv-2026-card {
  height: 100% !important;
  text-align: center !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.94)),
    linear-gradient(135deg, rgba(255,69,0,0.08), rgba(0,121,211,0.07));
  border: 1px solid #dfe9e6;
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(26, 47, 43, 0.09);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background-position 420ms ease;
  background-size: 100% 100%, 180% 180%;
  background-position: center, 0% 50%;
  position: relative;
  overflow: hidden;
}

.rlv-2026-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,69,0,0.08), transparent 44%, rgba(0,121,211,0.08));
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.rlv-2026-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 69, 0, 0.34);
  box-shadow: 0 24px 62px rgba(255, 69, 0, 0.16), 0 16px 42px rgba(0, 121, 211, 0.08);
  background-position: center, 100% 50%;
}

.rlv-2026-card:hover::after {
  opacity: 1;
}

.rlv-2026-icon {
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 16px;
  background: linear-gradient(135deg, #ff4500, #0079d3);
  box-shadow: 0 14px 30px rgba(255, 69, 0, 0.22);
  transition: transform 260ms ease, box-shadow 260ms ease;
  position: relative;
  z-index: 1;
}

.rlv-2026-card:hover .rlv-2026-icon {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 38px rgba(0, 121, 211, 0.22);
}

.rlv-2026-i {
  color: #ffffff;
  line-height: 1;
  text-align: center !important;
}

.rlv-2026-card h3 {
  margin: 20px 0 0;
  color: #182523;
  font-weight: 800;
  line-height: 1.24;
  letter-spacing: 0;
  text-align: center !important;
  position: relative;
  z-index: 1;
}

.rlv-2026-card p {
  margin: 12px 0 0;
  color: #586664;
  line-height: 1.58;
  font-weight: 500;
  text-align: center !important;
  position: relative;
  z-index: 1;
}

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

  .rlv-2026-wrap h2 {
    font-size: 42px;
  }

  .rlv-2026-intro {
    font-size: 17px;
  }

  .rlv-2026-grid {
    gap: 24px;
    margin-top: 42px;
  }

  .rlv-2026-card {
    min-height: 292px;
    padding: 34px 28px;
  }

  .rlv-2026-icon {
    width: 68px;
    height: 68px;
  }

  .rlv-2026-i {
    font-size: 28px;
  }

  .rlv-2026-card h3 {
    font-size: 21px;
  }

  .rlv-2026-card p {
    font-size: 15px;
  }
}

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

  .rlv-2026-container {
    padding-left: 22px;
    padding-right: 22px;
  }

  .rlv-2026-wrap h2 {
    font-size: 34px;
  }

  .rlv-2026-intro {
    font-size: 16px;
  }

  .rlv-2026-grid,
  .rlv-2026-grid-3,
  .rlv-2026-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 34px;
  }

  .rlv-2026-card {
    min-height: 264px;
    padding: 30px 22px;
  }

  .rlv-2026-icon {
    width: 60px;
    height: 60px;
  }

  .rlv-2026-i {
    font-size: 24px;
  }

  .rlv-2026-card h3 {
    font-size: 19px;
  }

  .rlv-2026-card p {
    font-size: 14px;
  }
}

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

  .rlv-2026-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .rlv-2026-wrap h2 {
    font-size: 27px;
  }

  .rlv-2026-intro {
    font-size: 14px;
    line-height: 1.55;
  }

  .rlv-2026-grid,
  .rlv-2026-grid-3,
  .rlv-2026-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
  }

  .rlv-2026-card {
    min-height: 230px;
    padding: 22px 14px;
    border-radius: 14px;
  }

  .rlv-2026-icon {
    width: 50px;
    height: 50px;
    border-radius: 13px;
  }

  .rlv-2026-i {
    font-size: 20px;
  }

  .rlv-2026-card h3 {
    font-size: 16px;
  }

  .rlv-2026-card p {
    font-size: 13px;
    line-height: 1.48;
  }
}

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

  .rlv-2026-container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .rlv-2026-wrap h2 {
    font-size: 24px;
  }

  .rlv-2026-intro {
    font-size: 13px;
    line-height: 1.5;
  }

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

  .rlv-2026-card {
    min-height: 220px;
    padding: 18px 11px;
    border-radius: 13px;
  }

  .rlv-2026-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }

  .rlv-2026-i {
    font-size: 18px;
  }

  .rlv-2026-card h3 {
    font-size: 15px;
  }

  .rlv-2026-card p {
    font-size: 12px;
    line-height: 1.45;
  }
}

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

  .rlv-2026-container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .rlv-2026-wrap h2 {
    font-size: 21px;
  }

  .rlv-2026-intro {
    font-size: 12px;
    line-height: 1.48;
  }

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

  .rlv-2026-card {
    min-height: 214px;
    padding: 16px 9px;
    border-radius: 12px;
  }

  .rlv-2026-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
  }

  .rlv-2026-i {
    font-size: 17px;
  }

  .rlv-2026-card h3 {
    font-size: 14px;
  }

  .rlv-2026-card p {
    font-size: 11.5px;
    line-height: 1.42;
  }
}

@media (max-width: 319px) {
  .rlv-2026-grid,
  .rlv-2026-grid-3,
  .rlv-2026-grid-4 {
    grid-template-columns: 1fr;
  }
}

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

.rlv-2026-card.rlv-2026-visible {
  opacity: 1;
  transform: translateY(0);
}