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

.rwv-editorial-content {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #17202a;
  background: #ffffff;
}

.rwv-editorial-content,
.rwv-editorial-content div,
.rwv-editorial-content section,
.rwv-editorial-content article {
  box-sizing: border-box;
}

.rwv-editorial-content .rwv-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.rwv-editorial-content .rwv-section-white {
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 69, 0, 0.08), transparent 30%),
    #ffffff;
}

.rwv-editorial-content .rwv-section-soft {
  background:
    linear-gradient(135deg, rgba(255, 69, 0, 0.06), rgba(255, 182, 122, 0.08)),
    #fbfaf8;
}

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

.rwv-editorial-content .rwv-section-head {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.rwv-editorial-content .rwv-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 69, 0, 0.2);
  border-radius: 999px;
  background: rgba(255, 69, 0, 0.08);
  color: #d53d00;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.rwv-editorial-content .rwv-section-head h2 {
  margin: 16px 0 0;
  color: #17202a;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.rwv-editorial-content .rwv-section-head p {
  margin: 16px auto 0;
  max-width: 690px;
  color: #58616d;
  line-height: 1.7;
  letter-spacing: 0;
}

.rwv-editorial-content .rwv-card-grid {
  display: grid;
  align-items: stretch;
}

.rwv-editorial-content .rwv-card,
.rwv-editorial-content .rwv-trust-card,
.rwv-editorial-content .rwv-step-card {
  position: relative;
  height: 100%;
  border: 1px solid rgba(23, 32, 42, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(23, 32, 42, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.rwv-editorial-content .rwv-card::before,
.rwv-editorial-content .rwv-trust-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.35), rgba(255, 162, 83, 0), rgba(31, 41, 55, 0.08));
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.rwv-editorial-content .rwv-card:hover,
.rwv-editorial-content .rwv-trust-card:hover,
.rwv-editorial-content .rwv-step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 69, 0, 0.22);
  box-shadow: 0 24px 58px rgba(23, 32, 42, 0.12);
}

.rwv-editorial-content .rwv-card:hover::before,
.rwv-editorial-content .rwv-trust-card:hover::before {
  opacity: 1;
}

.rwv-editorial-content .rwv-card h3,
.rwv-editorial-content .rwv-trust-card h3,
.rwv-editorial-content .rwv-step-card h3 {
  margin: 0;
  color: #17202a;
  font-weight: 760;
  line-height: 1.25;
  letter-spacing: 0;
}

.rwv-editorial-content .rwv-card p,
.rwv-editorial-content .rwv-trust-card p,
.rwv-editorial-content .rwv-step-card p {
  margin: 10px 0 0;
  color: #606b78;
  line-height: 1.65;
  letter-spacing: 0;
}

.rwv-editorial-content .rwv-icon {
  position: relative;
  display: inline-flex;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ff4500, #ff8a3d);
  box-shadow: 0 14px 26px rgba(255, 69, 0, 0.22);
  transition: transform 220ms ease;
}

.rwv-editorial-content .rwv-card:hover .rwv-icon {
  transform: translateY(-2px) rotate(-2deg);
}

.rwv-editorial-content .rwv-icon::before,
.rwv-editorial-content .rwv-icon::after {
  content: "";
  position: absolute;
  background: #ffffff;
}

.rwv-editorial-content .rwv-icon-window::before {
  width: 22px;
  height: 15px;
  left: 12px;
  top: 15px;
  border-radius: 4px;
}

.rwv-editorial-content .rwv-icon-window::after {
  width: 22px;
  height: 3px;
  left: 12px;
  top: 15px;
  border-radius: 4px 4px 0 0;
  background: rgba(23, 32, 42, 0.25);
}

.rwv-editorial-content .rwv-icon-flash::before {
  width: 11px;
  height: 24px;
  left: 18px;
  top: 11px;
  clip-path: polygon(48% 0, 100% 0, 65% 43%, 100% 43%, 36% 100%, 46% 55%, 0 55%);
}

.rwv-editorial-content .rwv-icon-preview::before {
  width: 24px;
  height: 16px;
  left: 11px;
  top: 15px;
  border-radius: 999px;
}

.rwv-editorial-content .rwv-icon-preview::after {
  width: 8px;
  height: 8px;
  left: 19px;
  top: 19px;
  border-radius: 50%;
  background: #ff4500;
}

.rwv-editorial-content .rwv-icon-steps::before {
  width: 6px;
  height: 6px;
  left: 13px;
  top: 12px;
  border-radius: 50%;
  box-shadow: 0 10px 0 #ffffff, 0 20px 0 #ffffff;
}

.rwv-editorial-content .rwv-icon-steps::after {
  width: 15px;
  height: 3px;
  right: 11px;
  top: 14px;
  border-radius: 999px;
  box-shadow: 0 10px 0 #ffffff, 0 20px 0 #ffffff;
}

.rwv-editorial-content .rwv-icon-mobile::before {
  width: 16px;
  height: 25px;
  left: 15px;
  top: 10px;
  border-radius: 5px;
}

.rwv-editorial-content .rwv-icon-mobile::after {
  width: 5px;
  height: 5px;
  left: 20.5px;
  bottom: 13px;
  border-radius: 50%;
  background: #ff4500;
}

.rwv-editorial-content .rwv-icon-daily::before {
  width: 22px;
  height: 22px;
  left: 12px;
  top: 12px;
  border-radius: 50%;
}

.rwv-editorial-content .rwv-icon-daily::after {
  width: 10px;
  height: 5px;
  left: 18px;
  top: 19px;
  border-radius: 0 0 999px 999px;
  border: 2px solid #ff4500;
  border-top: 0;
  background: transparent;
}

.rwv-editorial-content .rwv-step-list {
  display: grid;
  grid-template-columns: 1fr;
}

.rwv-editorial-content .rwv-step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 246, 241, 0.92));
}

.rwv-editorial-content .rwv-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, #ff4500, #ff9b57);
  box-shadow: 0 16px 30px rgba(255, 69, 0, 0.22);
}

.rwv-editorial-content .rwv-use-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 251, 248, 0.96));
}

.rwv-editorial-content .rwv-mini-dot {
  display: inline-flex;
  width: 13px;
  height: 13px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #ff4500;
  box-shadow: 18px 0 0 rgba(255, 69, 0, 0.22), 36px 0 0 rgba(255, 69, 0, 0.12);
}

.rwv-editorial-content .rwv-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 69, 0, 0.09);
  color: #d53d00;
  font-size: 12px;
  font-weight: 780;
  line-height: 1.2;
  letter-spacing: 0;
}

.rwv-editorial-content .rwv-trust-card {
  background: #ffffff;
}

.rwv-editorial-content .rwv-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (min-width: 320px) and (max-width: 374px) {
  .rwv-editorial-content .rwv-section {
    padding: 54px 0;
  }

  .rwv-editorial-content .rwv-container {
    padding: 0 14px;
  }

  .rwv-editorial-content .rwv-section-head h2 {
    font-size: 27px;
  }

  .rwv-editorial-content .rwv-section-head p {
    font-size: 15px;
  }

  .rwv-editorial-content .rwv-card-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 30px;
  }

  .rwv-editorial-content .rwv-card,
  .rwv-editorial-content .rwv-trust-card {
    padding: 22px;
    border-radius: 18px;
  }

  .rwv-editorial-content .rwv-card h3,
  .rwv-editorial-content .rwv-trust-card h3,
  .rwv-editorial-content .rwv-step-card h3 {
    font-size: 18px;
  }

  .rwv-editorial-content .rwv-card p,
  .rwv-editorial-content .rwv-trust-card p,
  .rwv-editorial-content .rwv-step-card p {
    font-size: 14px;
  }

  .rwv-editorial-content .rwv-step-list {
    gap: 16px;
    margin-top: 30px;
  }

  .rwv-editorial-content .rwv-step-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px;
    border-radius: 18px;
  }

  .rwv-editorial-content .rwv-step-number {
    width: 58px;
    height: 58px;
    font-size: 18px;
  }
}

@media (min-width: 375px) and (max-width: 429px) {
  .rwv-editorial-content .rwv-section {
    padding: 60px 0;
  }

  .rwv-editorial-content .rwv-container {
    padding: 0 18px;
  }

  .rwv-editorial-content .rwv-section-head h2 {
    font-size: 30px;
  }

  .rwv-editorial-content .rwv-section-head p {
    font-size: 15.5px;
  }

  .rwv-editorial-content .rwv-card-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 34px;
  }

  .rwv-editorial-content .rwv-card,
  .rwv-editorial-content .rwv-trust-card {
    padding: 24px;
    border-radius: 20px;
  }

  .rwv-editorial-content .rwv-card h3,
  .rwv-editorial-content .rwv-trust-card h3,
  .rwv-editorial-content .rwv-step-card h3 {
    font-size: 19px;
  }

  .rwv-editorial-content .rwv-card p,
  .rwv-editorial-content .rwv-trust-card p,
  .rwv-editorial-content .rwv-step-card p {
    font-size: 14.5px;
  }

  .rwv-editorial-content .rwv-step-list {
    gap: 18px;
    margin-top: 34px;
  }

  .rwv-editorial-content .rwv-step-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
    border-radius: 20px;
  }

  .rwv-editorial-content .rwv-step-number {
    width: 60px;
    height: 60px;
    font-size: 18px;
  }
}

@media (min-width: 430px) and (max-width: 767px) {
  .rwv-editorial-content .rwv-section {
    padding: 66px 0;
  }

  .rwv-editorial-content .rwv-container {
    padding: 0 22px;
  }

  .rwv-editorial-content .rwv-section-head h2 {
    font-size: 34px;
  }

  .rwv-editorial-content .rwv-section-head p {
    font-size: 16px;
  }

  .rwv-editorial-content .rwv-card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 38px;
  }

  .rwv-editorial-content .rwv-card,
  .rwv-editorial-content .rwv-trust-card {
    padding: 26px;
    border-radius: 22px;
  }

  .rwv-editorial-content .rwv-card h3,
  .rwv-editorial-content .rwv-trust-card h3,
  .rwv-editorial-content .rwv-step-card h3 {
    font-size: 20px;
  }

  .rwv-editorial-content .rwv-card p,
  .rwv-editorial-content .rwv-trust-card p,
  .rwv-editorial-content .rwv-step-card p {
    font-size: 15px;
  }

  .rwv-editorial-content .rwv-step-list {
    gap: 20px;
    margin-top: 38px;
  }

  .rwv-editorial-content .rwv-step-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px;
    border-radius: 22px;
  }

  .rwv-editorial-content .rwv-step-number {
    width: 64px;
    height: 64px;
    font-size: 19px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .rwv-editorial-content .rwv-section {
    padding: 82px 0;
  }

  .rwv-editorial-content .rwv-container {
    padding: 0 32px;
  }

  .rwv-editorial-content .rwv-section-head h2 {
    font-size: 42px;
  }

  .rwv-editorial-content .rwv-section-head p {
    font-size: 17px;
  }

  .rwv-editorial-content .rwv-grid-six,
  .rwv-editorial-content .rwv-grid-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rwv-editorial-content .rwv-card-grid {
    gap: 22px;
    margin-top: 44px;
  }

  .rwv-editorial-content .rwv-card,
  .rwv-editorial-content .rwv-trust-card {
    padding: 28px;
    border-radius: 22px;
  }

  .rwv-editorial-content .rwv-card h3,
  .rwv-editorial-content .rwv-trust-card h3,
  .rwv-editorial-content .rwv-step-card h3 {
    font-size: 21px;
  }

  .rwv-editorial-content .rwv-card p,
  .rwv-editorial-content .rwv-trust-card p,
  .rwv-editorial-content .rwv-step-card p {
    font-size: 15.5px;
  }

  .rwv-editorial-content .rwv-step-list {
    gap: 22px;
    margin-top: 44px;
  }

  .rwv-editorial-content .rwv-step-card {
    gap: 24px;
    padding: 30px;
    border-radius: 22px;
  }

  .rwv-editorial-content .rwv-step-number {
    width: 68px;
    height: 68px;
    font-size: 20px;
  }
}

@media (min-width: 1024px) {
  .rwv-editorial-content .rwv-section {
    padding: 96px 0;
  }

  .rwv-editorial-content .rwv-container {
    padding: 0 34px;
  }

  .rwv-editorial-content .rwv-section-head h2 {
    font-size: 48px;
  }

  .rwv-editorial-content .rwv-section-head p {
    font-size: 18px;
  }

  .rwv-editorial-content .rwv-grid-six,
  .rwv-editorial-content .rwv-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .rwv-editorial-content .rwv-card-grid {
    gap: 24px;
    margin-top: 48px;
  }

  .rwv-editorial-content .rwv-card,
  .rwv-editorial-content .rwv-trust-card {
    padding: 30px;
    border-radius: 24px;
  }

  .rwv-editorial-content .rwv-card h3,
  .rwv-editorial-content .rwv-trust-card h3,
  .rwv-editorial-content .rwv-step-card h3 {
    font-size: 22px;
  }

  .rwv-editorial-content .rwv-card p,
  .rwv-editorial-content .rwv-trust-card p,
  .rwv-editorial-content .rwv-step-card p {
    font-size: 16px;
  }

  .rwv-editorial-content .rwv-step-list {
    gap: 22px;
    margin-top: 48px;
  }

  .rwv-editorial-content .rwv-step-card {
    gap: 28px;
    padding: 34px;
    border-radius: 24px;
  }

  .rwv-editorial-content .rwv-step-number {
    width: 74px;
    height: 74px;
    font-size: 21px;
  }
}