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

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

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

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

.rvv26-wrapper .rvv26-section {
  position: relative;
  width: 100%;
  text-align: center;
  overflow: hidden;
}

.rvv26-wrapper .rvv26-section-white {
  background: #ffffff;
  box-shadow: 0 0 0 100vmax #ffffff;
  clip-path: inset(0 -100vmax);
}

.rvv26-wrapper .rvv26-section-tint {
  background: linear-gradient(180deg, #fff7f4 0%, #f8fbfc 100%);
  box-shadow: 0 0 0 100vmax #fff7f4;
  clip-path: inset(0 -100vmax);
}

.rvv26-wrapper h2,
.rvv26-wrapper h3,
.rvv26-wrapper p {
  margin-left: auto;
  margin-right: auto;
  text-align: center !important;
}

.rvv26-wrapper h2 {
  max-width: 980px;
  margin-top: 0;
  margin-bottom: 14px;
  color: #172029;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.rvv26-wrapper .rvv26-intro {
  max-width: 760px;
  margin-top: 0;
  color: #5d6873;
  line-height: 1.7;
  font-weight: 450;
}

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

.rvv26-wrapper .rvv26-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100% !important;
  min-width: 0;
  text-align: center !important;
  background: linear-gradient(180deg, #ffffff 0%, #fffdfc 100%);
  border: 1px solid #f1d8d1;
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(169, 57, 35, 0.09);
  overflow: hidden;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease, background-position 280ms ease;
}

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

.rvv26-wrapper .rvv26-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 69, 0, 0.32);
  box-shadow: 0 24px 60px rgba(169, 57, 35, 0.16);
}

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

.rvv26-wrapper .rvv26-icon {
  position: relative;
  display: grid;
  place-items: center;
  margin: 0 auto;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff4500 0%, #ff7a45 52%, #14b8a6 100%);
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(255, 69, 0, 0.22);
  transition: transform 280ms ease, box-shadow 280ms ease;
  z-index: 1;
}

.rvv26-wrapper .rvv26-card:hover .rvv26-icon {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 20px 38px rgba(20, 184, 166, 0.24);
}

.rvv26-wrapper .rvv26-i {
  color: #ffffff;
  line-height: 1;
  text-align: center;
}

.rvv26-wrapper h3 {
  position: relative;
  z-index: 1;
  margin-top: 0;
  margin-bottom: 10px;
  color: #172029;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.rvv26-wrapper .rvv26-card p {
  position: relative;
  z-index: 1;
  margin-top: 0;
  margin-bottom: 0;
  color: #66717c;
  line-height: 1.62;
  font-weight: 450;
}

.rvv26-wrapper .rvv26-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.rvv26-wrapper .rvv26-reveal.rvv26-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

  .rvv26-wrapper h2 {
    font-size: 46px;
    white-space: nowrap;
  }

  .rvv26-wrapper .rvv26-intro {
    margin-bottom: 42px;
    font-size: 18px;
  }

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

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

  .rvv26-wrapper .rvv26-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 24px;
  }

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

  .rvv26-wrapper h3 {
    font-size: 22px;
  }

  .rvv26-wrapper .rvv26-card p {
    font-size: 16px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .rvv26-wrapper .rvv26-container {
    padding: 0 22px;
  }

  .rvv26-wrapper .rvv26-section {
    padding: 72px 0;
  }

  .rvv26-wrapper h2 {
    font-size: 38px;
  }

  .rvv26-wrapper .rvv26-intro {
    margin-bottom: 34px;
    font-size: 17px;
  }

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

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

  .rvv26-wrapper .rvv26-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 22px;
  }

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

  .rvv26-wrapper h3 {
    font-size: 20px;
  }

  .rvv26-wrapper .rvv26-card p {
    font-size: 15px;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .rvv26-wrapper .rvv26-container {
    padding: 0 16px;
  }

  .rvv26-wrapper .rvv26-section {
    padding: 52px 0;
  }

  .rvv26-wrapper h2 {
    max-width: 390px;
    font-size: 30px;
  }

  .rvv26-wrapper .rvv26-intro {
    margin-bottom: 26px;
    font-size: 15px;
    line-height: 1.58;
  }

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

  .rvv26-wrapper .rvv26-card {
    min-height: 235px;
    padding: 22px 14px;
    border-radius: 16px;
  }

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

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

  .rvv26-wrapper h3 {
    font-size: 17px;
  }

  .rvv26-wrapper .rvv26-card p {
    font-size: 13.5px;
    line-height: 1.5;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .rvv26-wrapper .rvv26-container {
    padding: 0 12px;
  }

  .rvv26-wrapper .rvv26-section {
    padding: 46px 0;
  }

  .rvv26-wrapper h2 {
    max-width: 340px;
    font-size: 27px;
  }

  .rvv26-wrapper .rvv26-intro {
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 1.55;
  }

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

  .rvv26-wrapper .rvv26-card {
    min-height: 224px;
    padding: 19px 11px;
    border-radius: 15px;
  }

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

  .rvv26-wrapper .rvv26-i {
    font-size: 19px;
  }

  .rvv26-wrapper h3 {
    font-size: 15.5px;
  }

  .rvv26-wrapper .rvv26-card p {
    font-size: 12.8px;
    line-height: 1.46;
  }
}

@media (min-width: 320px) and (max-width: 374px) {
  .rvv26-wrapper .rvv26-container {
    padding: 0 10px;
  }

  .rvv26-wrapper .rvv26-section {
    padding: 40px 0;
  }

  .rvv26-wrapper h2 {
    max-width: 292px;
    font-size: 24px;
  }

  .rvv26-wrapper .rvv26-intro {
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.5;
  }

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

  .rvv26-wrapper .rvv26-card {
    min-height: 214px;
    padding: 17px 9px;
    border-radius: 14px;
  }

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

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

  .rvv26-wrapper h3 {
    font-size: 14px;
    line-height: 1.22;
  }

  .rvv26-wrapper .rvv26-card p {
    font-size: 12px;
    line-height: 1.42;
  }
}