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

.ruv26-wrapper {
  width: 100% !important;
  overflow: hidden;
  box-sizing: border-box;
  background: #ffffff;
  color: #1f252b;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ruv26-wrapper *,
.ruv26-wrapper *::before,
.ruv26-wrapper *::after {
  box-sizing: border-box;
  min-width: 0;
}

.ruv26-section {
  width: 100% !important;
  position: relative;
}

.ruv26-section-one,
.ruv26-section-three {
  background: #ffffff;
}

.ruv26-section-two {
  background: linear-gradient(180deg, #fff7f1 0%, #f8faf9 100%);
}

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

.ruv26-heading,
.ruv26-intro,
.ruv26-title,
.ruv26-text {
  text-align: center !important;
}

.ruv26-heading {
  margin: 0 auto;
  max-width: 980px;
  color: #202327;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.ruv26-intro {
  margin: 0 auto;
  max-width: 760px;
  color: #5e666d;
  line-height: 1.7;
  font-weight: 500;
}

.ruv26-grid {
  display: grid !important;
  align-items: stretch !important;
}

.ruv26-card {
  height: 100% !important;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center !important;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 69, 0, 0.16);
  box-shadow: 0 18px 48px rgba(119, 48, 18, 0.09);
  position: relative;
  overflow: hidden;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease, background 280ms ease;
}

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

.ruv26-icon {
  display: grid;
  place-items: center;
  margin: 0 auto;
  color: #ff4500;
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.12), rgba(0, 121, 211, 0.1));
  border: 1px solid rgba(255, 69, 0, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85), 0 12px 28px rgba(255, 69, 0, 0.12);
  transition: transform 280ms ease, color 280ms ease, background 280ms ease;
}

.ruv26-i {
  line-height: 1;
}

.ruv26-title {
  margin: 0;
  color: #22272b;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.ruv26-text {
  margin: 0;
  color: #626a72;
  font-weight: 500;
  line-height: 1.62;
}

.ruv26-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 121, 211, 0.32);
  box-shadow: 0 26px 62px rgba(119, 48, 18, 0.14);
  background: #ffffff;
}

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

.ruv26-card:hover .ruv26-icon {
  transform: translateY(-4px) scale(1.04);
  color: #0079d3;
  background: linear-gradient(135deg, rgba(0, 121, 211, 0.13), rgba(255, 69, 0, 0.13));
}

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

.ruv26-card.ruv26-reveal.ruv26-in {
  opacity: 1;
  transform: translateY(0);
}

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

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

  .ruv26-heading {
    font-size: 44px;
  }

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

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

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

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

  .ruv26-card {
    min-height: 292px;
    padding: 34px 28px 30px;
    border-radius: 22px;
  }

  .ruv26-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    font-size: 27px;
    margin-bottom: 24px;
  }

  .ruv26-title {
    font-size: 21px;
    margin-bottom: 12px;
  }

  .ruv26-text {
    font-size: 15.5px;
  }
}

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

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

  .ruv26-heading {
    font-size: 36px;
  }

  .ruv26-intro {
    font-size: 17px;
    margin-top: 16px;
  }

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

  .ruv26-card {
    min-height: 266px;
    padding: 30px 24px 26px;
    border-radius: 20px;
  }

  .ruv26-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    font-size: 25px;
    margin-bottom: 21px;
  }

  .ruv26-title {
    font-size: 20px;
    margin-bottom: 11px;
  }

  .ruv26-text {
    font-size: 15px;
  }
}

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

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

  .ruv26-heading {
    font-size: 29px;
    max-width: 420px;
  }

  .ruv26-intro {
    font-size: 14.5px;
    margin-top: 12px;
    line-height: 1.6;
  }

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

  .ruv26-card {
    min-height: 230px;
    padding: 20px 14px 18px;
    border-radius: 16px;
  }

  .ruv26-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    font-size: 21px;
    margin-bottom: 16px;
  }

  .ruv26-title {
    font-size: 16px;
    margin-bottom: 9px;
  }

  .ruv26-text {
    font-size: 13px;
    line-height: 1.5;
  }
}

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

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

  .ruv26-heading {
    font-size: 25px;
    max-width: 340px;
  }

  .ruv26-intro {
    font-size: 13.5px;
    margin-top: 11px;
    line-height: 1.55;
  }

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

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

  .ruv26-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 19px;
    margin-bottom: 14px;
  }

  .ruv26-title {
    font-size: 14.5px;
    margin-bottom: 8px;
  }

  .ruv26-text {
    font-size: 12.5px;
    line-height: 1.46;
  }
}

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

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

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

  .ruv26-intro {
    font-size: 12.5px;
    margin-top: 10px;
    line-height: 1.5;
  }

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

  .ruv26-card {
    min-height: 212px;
    padding: 16px 9px 14px;
    border-radius: 14px;
  }

  .ruv26-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    font-size: 17px;
    margin-bottom: 12px;
  }

  .ruv26-title {
    font-size: 13.5px;
    margin-bottom: 7px;
  }

  .ruv26-text {
    font-size: 11.8px;
    line-height: 1.42;
  }
}