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

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

.ttvv-content,
.ttvv-content div,
.ttvv-content section,
.ttvv-content article,
.ttvv-content span,
.ttvv-content h2,
.ttvv-content h3,
.ttvv-content p {
  box-sizing: border-box;
}

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

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

.ttvv-content .ttvv-section-soft {
  background:
    radial-gradient(circle at 8% 12%, rgba(37, 244, 238, 0.09), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(254, 44, 85, 0.08), transparent 28%),
    #f8fafc;
}

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

.ttvv-content .ttvv-section-head {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.ttvv-content .ttvv-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 7px 13px;
  border: 1px solid rgba(254, 44, 85, 0.18);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.13), rgba(254, 44, 85, 0.11));
  color: #c21748;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.15;
  letter-spacing: 0;
}

.ttvv-content .ttvv-section-head h2 {
  margin: 16px 0 0;
  color: #11131a;
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: 0;
}

.ttvv-content .ttvv-section-head p {
  margin: 16px auto 0;
  max-width: 690px;
  color: #5b6272;
  font-weight: 450;
  line-height: 1.72;
  letter-spacing: 0;
}

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

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

.ttvv-content .ttvv-card {
  position: relative;
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(20, 24, 33, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9)),
    #ffffff;
  box-shadow: 0 18px 45px rgba(18, 24, 40, 0.08);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.ttvv-content .ttvv-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.1), transparent 36%, rgba(254, 44, 85, 0.08));
  opacity: 0;
  transition: opacity 260ms ease;
}

.ttvv-content .ttvv-card:hover {
  transform: translateY(-6px);
  border-color: rgba(254, 44, 85, 0.22);
  box-shadow: 0 24px 60px rgba(18, 24, 40, 0.12);
}

.ttvv-content .ttvv-card:hover::before {
  opacity: 1;
}

.ttvv-content .ttvv-card h3 {
  position: relative;
  margin: 0;
  color: #151823;
  font-weight: 800;
  line-height: 1.24;
  letter-spacing: 0;
}

.ttvv-content .ttvv-card p {
  position: relative;
  margin: 10px 0 0;
  color: #616879;
  font-weight: 430;
  line-height: 1.68;
  letter-spacing: 0;
}

.ttvv-content .ttvv-icon {
  position: relative;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  flex: 0 0 auto;
  border-radius: 16px;
  background: linear-gradient(135deg, #25f4ee, #fe2c55);
  box-shadow: 0 14px 30px rgba(254, 44, 85, 0.18);
}

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

.ttvv-content .ttvv-card:hover .ttvv-icon::before,
.ttvv-content .ttvv-card:hover .ttvv-icon::after {
  transform: translateY(-1px) scale(1.04);
}

.ttvv-content .ttvv-icon-play::before {
  left: 18px;
  top: 14px;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 13px solid #ffffff;
}

.ttvv-content .ttvv-icon-speed::before {
  left: 12px;
  top: 22px;
  width: 23px;
  height: 11px;
  border: 3px solid #ffffff;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-bottom: 0;
}

.ttvv-content .ttvv-icon-speed::after {
  left: 22px;
  top: 17px;
  width: 3px;
  height: 14px;
  border-radius: 999px;
  background: #ffffff;
  transform: rotate(42deg);
  transform-origin: bottom center;
}

.ttvv-content .ttvv-icon-preview::before {
  left: 11px;
  top: 13px;
  width: 24px;
  height: 18px;
  border: 3px solid #ffffff;
  border-radius: 8px;
}

.ttvv-content .ttvv-icon-preview::after {
  left: 17px;
  top: 18px;
  width: 12px;
  height: 8px;
  border-radius: 999px;
  background: #ffffff;
}

.ttvv-content .ttvv-icon-steps::before {
  left: 13px;
  top: 13px;
  width: 20px;
  height: 20px;
  border: 3px solid #ffffff;
  border-radius: 8px;
}

.ttvv-content .ttvv-icon-steps::after {
  left: 19px;
  top: 19px;
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: #ffffff;
}

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

.ttvv-content .ttvv-icon-mobile::after {
  left: 21px;
  bottom: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ffffff;
}

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

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

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

.ttvv-content .ttvv-step-card {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-columns: auto 1fr;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(20, 24, 33, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 48px rgba(18, 24, 40, 0.08);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.ttvv-content .ttvv-step-card::before {
  content: "";
  position: absolute;
  left: 36px;
  top: -30px;
  width: 92px;
  height: 160px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(37, 244, 238, 0.16), rgba(254, 44, 85, 0.12));
  transform: rotate(22deg);
}

.ttvv-content .ttvv-step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 244, 238, 0.24);
  box-shadow: 0 24px 60px rgba(18, 24, 40, 0.12);
}

.ttvv-content .ttvv-step-number {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: #11131a;
  color: #ffffff;
  font-size: 22px;
  font-weight: 850;
  line-height: 1;
  box-shadow: 0 15px 30px rgba(17, 19, 26, 0.18);
}

.ttvv-content .ttvv-step-copy {
  position: relative;
  min-width: 0;
}

.ttvv-content .ttvv-step-copy h3 {
  margin: 0;
  color: #151823;
  font-weight: 820;
  line-height: 1.22;
  letter-spacing: 0;
}

.ttvv-content .ttvv-step-copy p {
  margin: 8px 0 0;
  color: #5e6677;
  font-weight: 430;
  line-height: 1.68;
  letter-spacing: 0;
}

.ttvv-content .ttvv-use-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 255, 0.94)),
    #ffffff;
}

.ttvv-content .ttvv-dot {
  position: relative;
  width: 15px;
  height: 15px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #fe2c55;
  box-shadow: 16px 0 0 #25f4ee, 32px 0 0 rgba(17, 19, 26, 0.18);
}

.ttvv-content .ttvv-trust-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96)),
    #ffffff;
}

.ttvv-content .ttvv-badge {
  position: relative;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #11131a;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

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

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

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

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

  .ttvv-content .ttvv-section-head h2 {
    font-size: 25px;
  }

  .ttvv-content .ttvv-section-head p {
    font-size: 14px;
  }

  .ttvv-content .ttvv-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
  }

  .ttvv-content .ttvv-card {
    padding: 20px;
    border-radius: 18px;
  }

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

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

  .ttvv-content .ttvv-steps {
    gap: 14px;
    margin-top: 28px;
  }

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

  .ttvv-content .ttvv-step-number {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    font-size: 18px;
  }
}

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

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

  .ttvv-content .ttvv-section-head h2 {
    font-size: 28px;
  }

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

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

  .ttvv-content .ttvv-card {
    padding: 22px;
    border-radius: 20px;
  }

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

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

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

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

  .ttvv-content .ttvv-step-number {
    width: 62px;
    height: 62px;
    border-radius: 19px;
    font-size: 19px;
  }
}

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

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

  .ttvv-content .ttvv-section-head h2 {
    font-size: 31px;
  }

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

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

  .ttvv-content .ttvv-card {
    padding: 24px;
    border-radius: 21px;
  }

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

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

  .ttvv-content .ttvv-steps {
    gap: 18px;
    margin-top: 34px;
  }

  .ttvv-content .ttvv-step-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
    border-radius: 21px;
  }

  .ttvv-content .ttvv-step-number {
    width: 66px;
    height: 66px;
    border-radius: 20px;
    font-size: 20px;
  }
}

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

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

  .ttvv-content .ttvv-section-head h2 {
    font-size: 40px;
  }

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

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

  .ttvv-content .ttvv-card {
    padding: 28px;
  }

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

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

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

  .ttvv-content .ttvv-step-card {
    gap: 24px;
    padding: 28px;
  }
}

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

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

  .ttvv-content .ttvv-section-head h2 {
    font-size: 46px;
  }

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

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

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

  .ttvv-content .ttvv-card {
    padding: 30px;
  }

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

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

  .ttvv-content .ttvv-steps {
    gap: 22px;
    margin-top: 48px;
  }

  .ttvv-content .ttvv-step-card {
    gap: 28px;
    padding: 30px 34px;
  }
}