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

.ytvv-content-wrap {
  width: 100%;
  max-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;
}

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

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

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

.ytvv-content-wrap .ytvv-section-soft {
  background:
    radial-gradient(circle at top left, rgba(255, 0, 84, 0.08), transparent 32%),
    linear-gradient(180deg, #fff8fa 0%, #f8fafc 100%);
}

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

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

.ytvv-content-wrap .ytvv-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 5px 12px;
  border: 1px solid rgba(255, 0, 84, 0.18);
  border-radius: 999px;
  background: rgba(255, 0, 84, 0.06);
  color: #b0003f;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.ytvv-content-wrap .ytvv-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff0054, #ff6b35);
  box-shadow: 0 0 0 5px rgba(255, 0, 84, 0.12);
}

.ytvv-content-wrap h2 {
  margin: 16px 0 0;
  color: #101827;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.15;
}

.ytvv-content-wrap .ytvv-section-head p {
  margin: 14px auto 0;
  color: #5b6575;
  line-height: 1.7;
}

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

.ytvv-content-wrap .ytvv-card,
.ytvv-content-wrap .ytvv-trust-card,
.ytvv-content-wrap .ytvv-step-card {
  position: relative;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.ytvv-content-wrap .ytvv-card {
  min-height: 100%;
  border-radius: 22px;
  overflow: hidden;
}

.ytvv-content-wrap .ytvv-card::after,
.ytvv-content-wrap .ytvv-trust-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 0, 84, 0.12), transparent 38%, rgba(255, 107, 53, 0.10));
  opacity: 0;
  transition: opacity 220ms ease;
}

.ytvv-content-wrap .ytvv-card:hover,
.ytvv-content-wrap .ytvv-trust-card:hover,
.ytvv-content-wrap .ytvv-step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 0, 84, 0.22);
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.12);
}

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

.ytvv-content-wrap .ytvv-card h3,
.ytvv-content-wrap .ytvv-trust-card h3,
.ytvv-content-wrap .ytvv-step-copy h3 {
  position: relative;
  margin: 0;
  color: #111827;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.28;
  z-index: 1;
}

.ytvv-content-wrap .ytvv-card p,
.ytvv-content-wrap .ytvv-trust-card p,
.ytvv-content-wrap .ytvv-step-copy p {
  position: relative;
  margin: 10px 0 0;
  color: #5d6778;
  line-height: 1.7;
  z-index: 1;
}

.ytvv-content-wrap .ytvv-icon {
  position: relative;
  display: inline-flex;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ff0054, #ff6b35);
  box-shadow: 0 14px 28px rgba(255, 0, 84, 0.22);
  z-index: 1;
}

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

.ytvv-content-wrap .ytvv-card:hover .ytvv-icon::before {
  transform: translateX(2px);
}

.ytvv-content-wrap .ytvv-icon-play::before {
  left: 18px;
  top: 14px;
  border-left: 13px solid #ffffff;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}

.ytvv-content-wrap .ytvv-icon-speed::before {
  left: 13px;
  top: 16px;
  width: 20px;
  height: 12px;
  border: 3px solid #ffffff;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}

.ytvv-content-wrap .ytvv-icon-speed::after {
  left: 23px;
  top: 21px;
  width: 12px;
  height: 3px;
  background: #ffffff;
  border-radius: 4px;
  transform: rotate(-28deg);
}

.ytvv-content-wrap .ytvv-icon-frame::before {
  left: 12px;
  top: 13px;
  width: 22px;
  height: 18px;
  border: 3px solid #ffffff;
  border-radius: 7px;
}

.ytvv-content-wrap .ytvv-icon-steps::before {
  left: 12px;
  top: 13px;
  width: 22px;
  height: 4px;
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 8px 0 #ffffff, 0 16px 0 #ffffff;
}

.ytvv-content-wrap .ytvv-icon-mobile::before {
  left: 15px;
  top: 9px;
  width: 16px;
  height: 27px;
  border: 3px solid #ffffff;
  border-radius: 7px;
}

.ytvv-content-wrap .ytvv-icon-mobile::after {
  left: 21px;
  bottom: 12px;
  width: 5px;
  height: 2px;
  background: #ffffff;
  border-radius: 5px;
}

.ytvv-content-wrap .ytvv-icon-daily::before {
  left: 12px;
  top: 12px;
  width: 22px;
  height: 22px;
  border: 3px solid #ffffff;
  border-radius: 50%;
}

.ytvv-content-wrap .ytvv-icon-daily::after {
  left: 22px;
  top: 16px;
  width: 3px;
  height: 12px;
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 5px 8px 0 -1px #ffffff;
}

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

.ytvv-content-wrap .ytvv-step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  border-radius: 24px;
  overflow: hidden;
}

.ytvv-content-wrap .ytvv-step-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 5px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, #ff0054, #ff6b35);
}

.ytvv-content-wrap .ytvv-step-number {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 20px;
  background: #111827;
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.18);
}

.ytvv-content-wrap .ytvv-badge-dot {
  display: inline-flex;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #ffffff 0 24%, transparent 25%),
    linear-gradient(135deg, #ff0054, #ff6b35);
  box-shadow: 0 12px 24px rgba(255, 0, 84, 0.18);
}

.ytvv-content-wrap .ytvv-trust-card {
  min-height: 100%;
  border-radius: 22px;
  overflow: hidden;
}

.ytvv-content-wrap .ytvv-trust-mark {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 0, 84, 0.08);
  color: #b0003f;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

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

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

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

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

  .ytvv-content-wrap h2 {
    font-size: 26px;
  }

  .ytvv-content-wrap .ytvv-section-head p {
    font-size: 15px;
  }

  .ytvv-content-wrap .ytvv-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }

  .ytvv-content-wrap .ytvv-card,
  .ytvv-content-wrap .ytvv-trust-card {
    padding: 22px;
  }

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

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

  .ytvv-content-wrap .ytvv-steps {
    gap: 16px;
    margin-top: 28px;
  }

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

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

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

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

  .ytvv-content-wrap h2 {
    font-size: 29px;
  }

  .ytvv-content-wrap .ytvv-section-head p {
    font-size: 15.5px;
  }

  .ytvv-content-wrap .ytvv-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 30px;
  }

  .ytvv-content-wrap .ytvv-card,
  .ytvv-content-wrap .ytvv-trust-card {
    padding: 24px;
  }

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

  .ytvv-content-wrap .ytvv-card p,
  .ytvv-content-wrap .ytvv-trust-card p,
  .ytvv-content-wrap .ytvv-step-copy p {
    font-size: 14.5px;
  }

  .ytvv-content-wrap .ytvv-steps {
    gap: 18px;
    margin-top: 30px;
  }

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

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

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

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

  .ytvv-content-wrap h2 {
    font-size: 32px;
  }

  .ytvv-content-wrap .ytvv-section-head p {
    font-size: 16px;
  }

  .ytvv-content-wrap .ytvv-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 34px;
  }

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

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

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

  .ytvv-content-wrap .ytvv-steps {
    gap: 20px;
    margin-top: 34px;
  }

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

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

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

  .ytvv-content-wrap .ytvv-container {
    padding: 0 30px;
  }

  .ytvv-content-wrap h2 {
    font-size: 40px;
  }

  .ytvv-content-wrap .ytvv-section-head p {
    font-size: 17px;
  }

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

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

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

  .ytvv-content-wrap .ytvv-card p,
  .ytvv-content-wrap .ytvv-trust-card p,
  .ytvv-content-wrap .ytvv-step-copy p {
    font-size: 15.5px;
  }

  .ytvv-content-wrap .ytvv-steps {
    gap: 22px;
    margin-top: 42px;
  }

  .ytvv-content-wrap .ytvv-step-card {
    gap: 22px;
    padding: 30px;
  }

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

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

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

  .ytvv-content-wrap h2 {
    font-size: 46px;
  }

  .ytvv-content-wrap .ytvv-section-head p {
    font-size: 18px;
  }

  .ytvv-content-wrap .ytvv-grid {
    gap: 24px;
    margin-top: 48px;
  }

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

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

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

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

  .ytvv-content-wrap .ytvv-steps {
    gap: 24px;
    margin-top: 48px;
  }

  .ytvv-content-wrap .ytvv-step-card {
    gap: 26px;
    padding: 34px 36px;
  }

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