@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

.rav-content-wrap {
  width: 100%;
  overflow-x: hidden;
  color: #172033;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background: #ffffff;
}

.rav-content-wrap,
.rav-content-wrap div,
.rav-content-wrap section,
.rav-content-wrap article {
  box-sizing: border-box;
}

.rav-content-wrap .rav-section {
  position: relative;
  width: 100%;
}

.rav-content-wrap .rav-section-white {
  background: #ffffff;
}

.rav-content-wrap .rav-section-soft {
  background: linear-gradient(180deg, #faf8ff 0%, #f7fbff 100%);
}

.rav-content-wrap .rav-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.rav-content-wrap .rav-heading-block {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.rav-content-wrap .rav-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  padding: 7px 13px;
  border: 1px solid rgba(255, 69, 0, 0.18);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.08), rgba(124, 58, 237, 0.08));
  color: #c13d09;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0;
}

.rav-content-wrap .rav-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff4500, #7c3aed);
  box-shadow: 0 0 0 5px rgba(255, 69, 0, 0.1);
}

.rav-content-wrap .rav-heading-block h2 {
  margin: 0;
  color: #121827;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.12;
}

.rav-content-wrap .rav-heading-block p {
  margin: 14px auto 0;
  max-width: 700px;
  color: #536073;
  font-weight: 450;
}

.rav-content-wrap .rav-card-grid {
  display: grid;
  align-items: stretch;
}

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

.rav-content-wrap .rav-info-card,
.rav-content-wrap .rav-use-card,
.rav-content-wrap .rav-trust-card,
.rav-content-wrap .rav-step-card {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(119, 130, 152, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.07);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.rav-content-wrap .rav-info-card,
.rav-content-wrap .rav-use-card,
.rav-content-wrap .rav-trust-card {
  height: 100%;
  overflow: hidden;
}

.rav-content-wrap .rav-info-card::after,
.rav-content-wrap .rav-use-card::after,
.rav-content-wrap .rav-trust-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, #ff4500, #7c3aed, #0ea5e9);
  opacity: 0;
  transition: opacity 260ms ease;
}

.rav-content-wrap .rav-info-card:hover,
.rav-content-wrap .rav-use-card:hover,
.rav-content-wrap .rav-trust-card:hover,
.rav-content-wrap .rav-step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 69, 0, 0.28);
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.11);
}

.rav-content-wrap .rav-info-card:hover::after,
.rav-content-wrap .rav-use-card:hover::after,
.rav-content-wrap .rav-trust-card:hover::after {
  opacity: 1;
}

.rav-content-wrap .rav-info-card h3,
.rav-content-wrap .rav-use-card h3,
.rav-content-wrap .rav-trust-card h3,
.rav-content-wrap .rav-step-card h3 {
  margin: 0;
  color: #172033;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.24;
}

.rav-content-wrap .rav-info-card p,
.rav-content-wrap .rav-use-card p,
.rav-content-wrap .rav-trust-card p,
.rav-content-wrap .rav-step-card p {
  margin: 10px 0 0;
  color: #5b6678;
}

.rav-content-wrap .rav-icon {
  position: relative;
  display: inline-flex;
  width: 46px;
  height: 46px;
  margin: 0 0 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.12), rgba(124, 58, 237, 0.13));
  border: 1px solid rgba(255, 69, 0, 0.14);
}

.rav-content-wrap .rav-icon::before,
.rav-content-wrap .rav-icon::after {
  content: "";
  position: absolute;
  transition: transform 260ms ease;
}

.rav-content-wrap .rav-info-card:hover .rav-icon::before,
.rav-content-wrap .rav-info-card:hover .rav-icon::after {
  transform: translateY(-2px);
}

.rav-content-wrap .rav-icon-window::before {
  inset: 13px 11px;
  border: 2px solid #ff4500;
  border-radius: 6px;
}

.rav-content-wrap .rav-icon-window::after {
  left: 16px;
  right: 16px;
  top: 19px;
  height: 2px;
  background: #7c3aed;
}

.rav-content-wrap .rav-icon-bolt::before {
  left: 18px;
  top: 10px;
  width: 12px;
  height: 25px;
  background: linear-gradient(135deg, #ff4500, #7c3aed);
  clip-path: polygon(46% 0, 100% 0, 61% 43%, 100% 43%, 31% 100%, 45% 55%, 0 55%);
}

.rav-content-wrap .rav-icon-frame::before {
  left: 11px;
  top: 12px;
  width: 24px;
  height: 18px;
  border: 2px solid #ff4500;
  border-radius: 7px;
}

.rav-content-wrap .rav-icon-frame::after {
  left: 17px;
  top: 18px;
  width: 12px;
  height: 6px;
  border-radius: 999px;
  background: #7c3aed;
}

.rav-content-wrap .rav-icon-path::before {
  left: 12px;
  top: 21px;
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, #ff4500, #7c3aed);
}

.rav-content-wrap .rav-icon-path::after {
  right: 11px;
  top: 17px;
  width: 9px;
  height: 9px;
  border-top: 2px solid #7c3aed;
  border-right: 2px solid #7c3aed;
  transform: rotate(45deg);
}

.rav-content-wrap .rav-icon-phone::before {
  left: 15px;
  top: 9px;
  width: 16px;
  height: 28px;
  border: 2px solid #ff4500;
  border-radius: 7px;
}

.rav-content-wrap .rav-icon-phone::after {
  left: 21px;
  bottom: 12px;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #7c3aed;
}

.rav-content-wrap .rav-icon-daily::before {
  left: 12px;
  top: 12px;
  width: 22px;
  height: 22px;
  border: 2px solid #ff4500;
  border-radius: 999px;
}

.rav-content-wrap .rav-icon-daily::after {
  left: 22px;
  top: 17px;
  width: 8px;
  height: 11px;
  border-left: 2px solid #7c3aed;
  border-bottom: 2px solid #7c3aed;
  border-radius: 0 0 0 4px;
}

.rav-content-wrap .rav-steps {
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
}

.rav-content-wrap .rav-step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #fff9f6 46%, #f7f3ff 100%);
}

.rav-content-wrap .rav-step-card::before {
  content: "";
  position: absolute;
  left: 34px;
  top: -26px;
  width: 90px;
  height: 90px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 69, 0, 0.14), rgba(255, 69, 0, 0));
}

.rav-content-wrap .rav-step-number {
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff4500, #7c3aed);
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 16px 34px rgba(124, 58, 237, 0.22);
}

.rav-content-wrap .rav-step-content {
  position: relative;
}

.rav-content-wrap .rav-dot {
  display: inline-flex;
  width: 13px;
  height: 13px;
  margin: 0 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff4500, #7c3aed);
  box-shadow: 0 0 0 8px rgba(255, 69, 0, 0.08);
}

.rav-content-wrap .rav-use-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.rav-content-wrap .rav-badge {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 18px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 69, 0, 0.08);
  color: #bd3b08;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.rav-content-wrap .rav-trust-card {
  background: linear-gradient(145deg, #ffffff, #fbf8ff);
}

.rav-content-wrap .rav-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.rav-content-wrap .rav-reveal.rav-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 320px) and (max-width: 374px) {
  .rav-content-wrap .rav-section {
    padding: 48px 0;
  }

  .rav-content-wrap .rav-container {
    padding: 0 14px;
  }

  .rav-content-wrap .rav-heading-block h2 {
    font-size: 25px;
  }

  .rav-content-wrap .rav-heading-block p {
    font-size: 14px;
  }

  .rav-content-wrap .rav-card-grid,
  .rav-content-wrap .rav-steps {
    gap: 14px;
    margin-top: 28px;
  }

  .rav-content-wrap .rav-grid-3 {
    grid-template-columns: 1fr;
  }

  .rav-content-wrap .rav-info-card,
  .rav-content-wrap .rav-use-card,
  .rav-content-wrap .rav-trust-card {
    padding: 22px;
  }

  .rav-content-wrap .rav-step-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px;
  }

  .rav-content-wrap .rav-step-number {
    width: 54px;
    height: 54px;
    font-size: 16px;
  }

  .rav-content-wrap .rav-info-card h3,
  .rav-content-wrap .rav-use-card h3,
  .rav-content-wrap .rav-trust-card h3,
  .rav-content-wrap .rav-step-card h3 {
    font-size: 18px;
  }

  .rav-content-wrap .rav-info-card p,
  .rav-content-wrap .rav-use-card p,
  .rav-content-wrap .rav-trust-card p,
  .rav-content-wrap .rav-step-card p {
    font-size: 14px;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .rav-content-wrap .rav-section {
    padding: 54px 0;
  }

  .rav-content-wrap .rav-container {
    padding: 0 18px;
  }

  .rav-content-wrap .rav-heading-block h2 {
    font-size: 28px;
  }

  .rav-content-wrap .rav-heading-block p {
    font-size: 15px;
  }

  .rav-content-wrap .rav-card-grid,
  .rav-content-wrap .rav-steps {
    gap: 16px;
    margin-top: 30px;
  }

  .rav-content-wrap .rav-grid-3 {
    grid-template-columns: 1fr;
  }

  .rav-content-wrap .rav-info-card,
  .rav-content-wrap .rav-use-card,
  .rav-content-wrap .rav-trust-card {
    padding: 24px;
  }

  .rav-content-wrap .rav-step-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }

  .rav-content-wrap .rav-step-number {
    width: 56px;
    height: 56px;
    font-size: 16px;
  }

  .rav-content-wrap .rav-info-card h3,
  .rav-content-wrap .rav-use-card h3,
  .rav-content-wrap .rav-trust-card h3,
  .rav-content-wrap .rav-step-card h3 {
    font-size: 19px;
  }

  .rav-content-wrap .rav-info-card p,
  .rav-content-wrap .rav-use-card p,
  .rav-content-wrap .rav-trust-card p,
  .rav-content-wrap .rav-step-card p {
    font-size: 15px;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .rav-content-wrap .rav-section {
    padding: 60px 0;
  }

  .rav-content-wrap .rav-container {
    padding: 0 22px;
  }

  .rav-content-wrap .rav-heading-block h2 {
    font-size: 32px;
  }

  .rav-content-wrap .rav-heading-block p {
    font-size: 16px;
  }

  .rav-content-wrap .rav-card-grid,
  .rav-content-wrap .rav-steps {
    gap: 18px;
    margin-top: 34px;
  }

  .rav-content-wrap .rav-grid-3 {
    grid-template-columns: 1fr;
  }

  .rav-content-wrap .rav-info-card,
  .rav-content-wrap .rav-use-card,
  .rav-content-wrap .rav-trust-card {
    padding: 26px;
  }

  .rav-content-wrap .rav-step-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px;
  }

  .rav-content-wrap .rav-step-number {
    width: 60px;
    height: 60px;
    font-size: 17px;
  }

  .rav-content-wrap .rav-info-card h3,
  .rav-content-wrap .rav-use-card h3,
  .rav-content-wrap .rav-trust-card h3,
  .rav-content-wrap .rav-step-card h3 {
    font-size: 20px;
  }

  .rav-content-wrap .rav-info-card p,
  .rav-content-wrap .rav-use-card p,
  .rav-content-wrap .rav-trust-card p,
  .rav-content-wrap .rav-step-card p {
    font-size: 15.5px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .rav-content-wrap .rav-section {
    padding: 76px 0;
  }

  .rav-content-wrap .rav-container {
    padding: 0 32px;
  }

  .rav-content-wrap .rav-heading-block h2 {
    font-size: 38px;
  }

  .rav-content-wrap .rav-heading-block p {
    font-size: 17px;
  }

  .rav-content-wrap .rav-card-grid,
  .rav-content-wrap .rav-steps {
    gap: 22px;
    margin-top: 42px;
  }

  .rav-content-wrap .rav-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rav-content-wrap .rav-info-card,
  .rav-content-wrap .rav-use-card,
  .rav-content-wrap .rav-trust-card {
    padding: 28px;
  }

  .rav-content-wrap .rav-step-card {
    grid-template-columns: auto 1fr;
    gap: 22px;
    padding: 28px;
  }

  .rav-content-wrap .rav-step-number {
    width: 66px;
    height: 66px;
    font-size: 18px;
  }

  .rav-content-wrap .rav-info-card h3,
  .rav-content-wrap .rav-use-card h3,
  .rav-content-wrap .rav-trust-card h3,
  .rav-content-wrap .rav-step-card h3 {
    font-size: 20px;
  }

  .rav-content-wrap .rav-info-card p,
  .rav-content-wrap .rav-use-card p,
  .rav-content-wrap .rav-trust-card p,
  .rav-content-wrap .rav-step-card p {
    font-size: 15.5px;
  }
}

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

  .rav-content-wrap .rav-container {
    padding: 0 34px;
  }

  .rav-content-wrap .rav-heading-block h2 {
    font-size: 44px;
  }

  .rav-content-wrap .rav-heading-block p {
    font-size: 17px;
  }

  .rav-content-wrap .rav-card-grid {
    gap: 24px;
    margin-top: 46px;
  }

  .rav-content-wrap .rav-steps {
    gap: 20px;
    margin-top: 46px;
  }

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

  .rav-content-wrap .rav-info-card,
  .rav-content-wrap .rav-use-card,
  .rav-content-wrap .rav-trust-card {
    padding: 30px;
  }

  .rav-content-wrap .rav-step-card {
    grid-template-columns: auto 1fr;
    gap: 26px;
    padding: 30px 34px;
  }

  .rav-content-wrap .rav-step-number {
    width: 72px;
    height: 72px;
    font-size: 19px;
  }

  .rav-content-wrap .rav-info-card h3,
  .rav-content-wrap .rav-use-card h3,
  .rav-content-wrap .rav-trust-card h3,
  .rav-content-wrap .rav-step-card h3 {
    font-size: 21px;
  }

  .rav-content-wrap .rav-info-card p,
  .rav-content-wrap .rav-use-card p,
  .rav-content-wrap .rav-trust-card p,
  .rav-content-wrap .rav-step-card p {
    font-size: 16px;
  }
}