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

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

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

.rav26-wrapper .rav26-section {
  width: 100% !important;
  overflow: hidden;
}

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

.rav26-wrapper .rav26-section-tint {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 69, 0, 0.08), transparent 34%),
    linear-gradient(180deg, #fff8f4 0%, #f7fbf8 100%);
}

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

.rav26-wrapper .rav26-heading,
.rav26-wrapper .rav26-intro,
.rav26-wrapper .rav26-card-title,
.rav26-wrapper .rav26-card-text {
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
}

.rav26-wrapper .rav26-heading {
  margin-top: 0;
  color: #12211f;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.rav26-wrapper .rav26-intro {
  color: #52615e;
  line-height: 1.7;
  margin-top: 14px;
  margin-bottom: 0;
  max-width: 760px;
}

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

.rav26-wrapper .rav26-card {
  position: relative;
  z-index: 1;
  height: 100% !important;
  min-width: 0;
  overflow: hidden;
  text-align: center !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 252, 249, 0.96)),
    #ffffff;
  border: 1px solid #dfe9e5;
  box-shadow: 0 18px 42px rgba(20, 38, 34, 0.09);
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease, background-position 280ms ease;
}

.rav26-wrapper .rav26-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.1), rgba(17, 137, 116, 0.08));
  transition: opacity 280ms ease;
}

.rav26-wrapper .rav26-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 69, 0, 0.34);
  box-shadow: 0 24px 58px rgba(255, 69, 0, 0.16), 0 14px 28px rgba(20, 38, 34, 0.08);
}

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

.rav26-wrapper .rav26-icon {
  display: grid;
  place-items: center;
  margin-left: auto;
  margin-right: auto;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff4500 0%, #118974 100%);
  box-shadow: 0 14px 26px rgba(255, 69, 0, 0.23);
  color: #ffffff;
  text-align: center !important;
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.rav26-wrapper .rav26-card:hover .rav26-icon {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 34px rgba(17, 137, 116, 0.25);
}

.rav26-wrapper .rav26-i {
  display: block;
  color: #ffffff;
  line-height: 1;
  text-align: center !important;
}

.rav26-wrapper .rav26-card-title {
  margin-bottom: 0;
  color: #172522;
  font-weight: 760;
  line-height: 1.25;
  letter-spacing: 0;
}

.rav26-wrapper .rav26-card-text {
  color: #5a6865;
  line-height: 1.62;
  margin-bottom: 0;
}

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

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

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

  .rav26-wrapper .rav26-container {
    padding: 0 28px;
  }

  .rav26-wrapper .rav26-heading {
    font-size: 42px;
  }

  .rav26-wrapper .rav26-intro {
    font-size: 17px;
  }

  .rav26-wrapper .rav26-grid {
    gap: 24px;
    margin-top: 44px;
  }

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

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

  .rav26-wrapper .rav26-card {
    min-height: 300px;
    padding: 34px 26px 30px;
    border-radius: 22px;
  }

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

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

  .rav26-wrapper .rav26-card-title {
    font-size: 20px;
    margin-top: 0;
  }

  .rav26-wrapper .rav26-card-text {
    font-size: 15px;
    margin-top: 14px;
  }
}

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

  .rav26-wrapper .rav26-container {
    padding: 0 24px;
  }

  .rav26-wrapper .rav26-heading {
    font-size: 34px;
  }

  .rav26-wrapper .rav26-intro {
    font-size: 16px;
  }

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

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

  .rav26-wrapper .rav26-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
  }

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

  .rav26-wrapper .rav26-card-title {
    font-size: 19px;
    margin-top: 0;
  }

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

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

  .rav26-wrapper .rav26-container {
    padding: 0 16px;
  }

  .rav26-wrapper .rav26-heading {
    font-size: 28px;
    max-width: 390px;
  }

  .rav26-wrapper .rav26-intro {
    font-size: 14.5px;
    max-width: 440px;
  }

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

  .rav26-wrapper .rav26-card {
    min-height: 238px;
    padding: 22px 14px 20px;
    border-radius: 17px;
  }

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

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

  .rav26-wrapper .rav26-card-title {
    font-size: 16px;
    margin-top: 0;
  }

  .rav26-wrapper .rav26-card-text {
    font-size: 13px;
    line-height: 1.52;
    margin-top: 10px;
  }
}

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

  .rav26-wrapper .rav26-container {
    padding: 0 14px;
  }

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

  .rav26-wrapper .rav26-intro {
    font-size: 13.5px;
    line-height: 1.6;
  }

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

  .rav26-wrapper .rav26-card {
    min-height: 228px;
    padding: 20px 12px 18px;
    border-radius: 16px;
  }

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

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

  .rav26-wrapper .rav26-card-title {
    font-size: 14.5px;
    line-height: 1.22;
    margin-top: 0;
  }

  .rav26-wrapper .rav26-card-text {
    font-size: 12.2px;
    line-height: 1.48;
    margin-top: 9px;
  }
}

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

  .rav26-wrapper .rav26-container {
    padding: 0 10px;
  }

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

  .rav26-wrapper .rav26-intro {
    font-size: 12.5px;
    line-height: 1.55;
  }

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

  .rav26-wrapper .rav26-card {
    min-height: 218px;
    padding: 18px 10px 16px;
    border-radius: 14px;
  }

  .rav26-wrapper .rav26-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
  }

  .rav26-wrapper .rav26-i {
    font-size: 17px;
  }

  .rav26-wrapper .rav26-card-title {
    font-size: 13.5px;
    line-height: 1.2;
    margin-top: 0;
  }

  .rav26-wrapper .rav26-card-text {
    font-size: 11.5px;
    line-height: 1.42;
    margin-top: 8px;
  }
}

@media (max-width: 319px) {
  .rav26-wrapper .rav26-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}