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

.tprv-content {
  width: 100%;
  overflow-x: hidden;
  color: #172033;
  font-family: inherit;
  background: #ffffff;
}

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

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

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

.tprv-content .tprv-section-soft {
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 69, 0, 0.08), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(105, 83, 255, 0.08), transparent 30%),
    #f8fafc;
}

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

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

.tprv-content .tprv-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 69, 0, 0.16);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.1), rgba(105, 83, 255, 0.08));
  color: #9b2f12;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.tprv-content .tprv-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff4500, #6953ff);
  box-shadow: 0 0 0 5px rgba(255, 69, 0, 0.1);
}

.tprv-content .tprv-heading h2 {
  margin: 0;
  color: #111827;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.tprv-content .tprv-heading p {
  margin: 16px auto 0;
  color: #526071;
  line-height: 1.7;
}

.tprv-content .tprv-grid {
  display: grid;
  align-items: stretch;
}

.tprv-content .tprv-card,
.tprv-content .tprv-trust-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(23, 32, 51, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.tprv-content .tprv-card::after,
.tprv-content .tprv-trust-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.12), rgba(105, 83, 255, 0.08));
  opacity: 0;
  transition: opacity 220ms ease;
}

.tprv-content .tprv-card:hover,
.tprv-content .tprv-trust-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 69, 0, 0.2);
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.12);
}

.tprv-content .tprv-card:hover::after,
.tprv-content .tprv-trust-card:hover::after {
  opacity: 1;
}

.tprv-content .tprv-card h3,
.tprv-content .tprv-trust-card h3,
.tprv-content .tprv-step-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #131b2e;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.tprv-content .tprv-card p,
.tprv-content .tprv-trust-card p,
.tprv-content .tprv-step-card p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: #5a6678;
  line-height: 1.68;
}

.tprv-content .tprv-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 48px;
  height: 48px;
  margin: 0 0 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ff4500, #6953ff);
  box-shadow: 0 12px 28px rgba(255, 69, 0, 0.22);
}

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

.tprv-content .tprv-icon-view::before {
  width: 22px;
  height: 14px;
  left: 13px;
  top: 17px;
  border-radius: 50%;
  opacity: 0.95;
}

.tprv-content .tprv-icon-view::after {
  width: 7px;
  height: 7px;
  left: 20px;
  top: 20px;
  border-radius: 50%;
  background: #ff4500;
}

.tprv-content .tprv-icon-speed::before {
  width: 22px;
  height: 4px;
  left: 13px;
  top: 16px;
  border-radius: 99px;
  box-shadow: 0 8px 0 rgba(255, 255, 255, 0.8), 0 16px 0 rgba(255, 255, 255, 0.55);
}

.tprv-content .tprv-icon-preview::before {
  width: 22px;
  height: 18px;
  left: 13px;
  top: 15px;
  border-radius: 5px;
  background: transparent;
  border: 2px solid #ffffff;
}

.tprv-content .tprv-icon-preview::after {
  width: 12px;
  height: 3px;
  left: 18px;
  top: 22px;
  border-radius: 99px;
}

.tprv-content .tprv-icon-steps::before {
  width: 7px;
  height: 7px;
  left: 14px;
  top: 14px;
  border-radius: 50%;
  box-shadow: 0 13px 0 #ffffff, 14px 0 0 rgba(255, 255, 255, 0.75), 14px 13px 0 rgba(255, 255, 255, 0.75);
}

.tprv-content .tprv-icon-mobile::before {
  width: 17px;
  height: 26px;
  left: 15px;
  top: 11px;
  border-radius: 6px;
  background: transparent;
  border: 2px solid #ffffff;
}

.tprv-content .tprv-icon-mobile::after {
  width: 5px;
  height: 2px;
  left: 22px;
  top: 31px;
  border-radius: 99px;
}

.tprv-content .tprv-icon-daily::before {
  width: 20px;
  height: 20px;
  left: 14px;
  top: 14px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #ffffff;
}

.tprv-content .tprv-icon-daily::after {
  width: 8px;
  height: 8px;
  left: 24px;
  top: 13px;
  border-radius: 50%;
}

.tprv-content .tprv-steps {
  display: grid;
  grid-template-columns: 1fr;
}

.tprv-content .tprv-step-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(17, 24, 39, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.tprv-content .tprv-step-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: linear-gradient(180deg, #ff4500, #6953ff);
}

.tprv-content .tprv-step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(105, 83, 255, 0.22);
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.12);
}

.tprv-content .tprv-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.13), rgba(105, 83, 255, 0.13));
  color: #ff4500;
  font-weight: 900;
  line-height: 1;
}

.tprv-content .tprv-card-use {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92)),
    radial-gradient(circle at 90% 0%, rgba(255, 69, 0, 0.18), transparent 34%);
}

.tprv-content .tprv-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin: 0 0 16px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 69, 0, 0.09);
  color: #9b2f12;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

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

.tprv-content .tprv-trust-dot {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 42px;
  height: 42px;
  margin: 0 0 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff4500, #6953ff);
  box-shadow: 0 0 0 8px rgba(255, 69, 0, 0.08);
}

.tprv-content .tprv-trust-dot::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 8px;
  left: 13px;
  top: 15px;
  border-left: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  transform: rotate(-45deg);
}

.tprv-content .tprv-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.tprv-content .tprv-reveal.tprv-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

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

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

  .tprv-content .tprv-heading h2 {
    font-size: 26px;
  }

  .tprv-content .tprv-heading p {
    font-size: 14px;
  }

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

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

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

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

  .tprv-content .tprv-steps {
    gap: 16px;
    margin-top: 30px;
  }

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

  .tprv-content .tprv-step-number {
    width: 54px;
    height: 54px;
    font-size: 18px;
  }
}

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

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

  .tprv-content .tprv-heading h2 {
    font-size: 29px;
  }

  .tprv-content .tprv-heading p {
    font-size: 15px;
  }

  .tprv-content .tprv-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 32px;
  }

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

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

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

  .tprv-content .tprv-steps {
    gap: 18px;
    margin-top: 32px;
  }

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

  .tprv-content .tprv-step-number {
    width: 58px;
    height: 58px;
    font-size: 19px;
  }
}

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

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

  .tprv-content .tprv-heading h2 {
    font-size: 32px;
  }

  .tprv-content .tprv-heading p {
    font-size: 16px;
  }

  .tprv-content .tprv-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 36px;
  }

  .tprv-content .tprv-card,
  .tprv-content .tprv-trust-card {
    padding: 26px;
  }

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

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

  .tprv-content .tprv-steps {
    gap: 20px;
    margin-top: 36px;
  }

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

  .tprv-content .tprv-step-number {
    width: 62px;
    height: 62px;
    font-size: 20px;
  }
}

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

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

  .tprv-content .tprv-heading h2 {
    font-size: 40px;
  }

  .tprv-content .tprv-heading p {
    font-size: 17px;
  }

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

  .tprv-content .tprv-card,
  .tprv-content .tprv-trust-card {
    padding: 28px;
  }

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

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

  .tprv-content .tprv-steps {
    gap: 20px;
    margin-top: 42px;
  }

  .tprv-content .tprv-step-card {
    gap: 24px;
    padding: 30px;
  }

  .tprv-content .tprv-step-number {
    width: 70px;
    height: 70px;
    font-size: 22px;
  }
}

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

  .tprv-content .tprv-container {
    padding: 0 36px;
  }

  .tprv-content .tprv-heading h2 {
    font-size: 46px;
  }

  .tprv-content .tprv-heading p {
    font-size: 18px;
  }

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

  .tprv-content .tprv-grid {
    gap: 24px;
    margin-top: 46px;
  }

  .tprv-content .tprv-card,
  .tprv-content .tprv-trust-card {
    padding: 30px;
  }

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

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

  .tprv-content .tprv-steps {
    gap: 22px;
    margin-top: 46px;
  }

  .tprv-content .tprv-step-card {
    gap: 28px;
    padding: 34px 36px;
  }

  .tprv-content .tprv-step-number {
    width: 78px;
    height: 78px;
    font-size: 24px;
  }
}