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

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

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

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

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

.ttvd-content-wrap .ttvd-section-soft {
  background:
    radial-gradient(circle at 12% 12%, rgba(37, 244, 238, 0.12), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(254, 44, 85, 0.1), transparent 32%),
    #f8fafc;
}

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

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

.ttvd-content-wrap .ttvd-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 14px;
  margin: 0 0 14px;
  border: 1px solid rgba(254, 44, 85, 0.18);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.14), rgba(254, 44, 85, 0.12));
  color: #a31942;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.2;
}

.ttvd-content-wrap .ttvd-section-head h2 {
  margin: 0;
  color: #111827;
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: 0;
}

.ttvd-content-wrap .ttvd-section-head p {
  margin: 16px auto 0;
  color: #5f6b7a;
  line-height: 1.7;
}

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

.ttvd-content-wrap .ttvd-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.ttvd-content-wrap .ttvd-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #25f4ee, #fe2c55, #111827);
  opacity: 0.82;
}

.ttvd-content-wrap .ttvd-card:hover {
  transform: translateY(-5px);
  border-color: rgba(254, 44, 85, 0.2);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.13);
}

.ttvd-content-wrap .ttvd-card h3 {
  margin: 0;
  color: #121826;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.ttvd-content-wrap .ttvd-card p {
  margin: 11px 0 0;
  color: #607086;
  line-height: 1.68;
}

.ttvd-content-wrap .ttvd-icon {
  position: relative;
  display: inline-flex;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.22), rgba(254, 44, 85, 0.16));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

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

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

.ttvd-content-wrap .ttvd-icon-play::before {
  left: 19px;
  top: 15px;
  border-left: 14px solid #fe2c55;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}

.ttvd-content-wrap .ttvd-icon-speed::before {
  left: 12px;
  top: 24px;
  width: 23px;
  height: 3px;
  border-radius: 999px;
  background: #111827;
  box-shadow: 6px -9px 0 #25f4ee, 11px 9px 0 #fe2c55;
}

.ttvd-content-wrap .ttvd-icon-frame::before {
  left: 13px;
  top: 13px;
  width: 22px;
  height: 22px;
  border: 3px solid #111827;
  border-radius: 8px;
}

.ttvd-content-wrap .ttvd-icon-steps::before {
  left: 14px;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #25f4ee;
  box-shadow: 0 12px 0 #fe2c55, 0 24px 0 #111827;
}

.ttvd-content-wrap .ttvd-icon-steps::after {
  left: 25px;
  top: 15px;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: #111827;
  box-shadow: 0 12px 0 #111827, 0 24px 0 #111827;
}

.ttvd-content-wrap .ttvd-icon-mobile::before {
  left: 16px;
  top: 9px;
  width: 17px;
  height: 30px;
  border: 3px solid #111827;
  border-radius: 8px;
}

.ttvd-content-wrap .ttvd-icon-mobile::after {
  left: 23px;
  bottom: 11px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fe2c55;
}

.ttvd-content-wrap .ttvd-icon-daily::before {
  left: 12px;
  top: 12px;
  width: 24px;
  height: 24px;
  border-radius: 9px;
  background: linear-gradient(135deg, #25f4ee, #fe2c55);
}

.ttvd-content-wrap .ttvd-icon-daily::after {
  left: 19px;
  top: 19px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffffff;
}

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

.ttvd-content-wrap .ttvd-step-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.86));
  box-shadow: 0 18px 52px rgba(15, 23, 42, 0.08);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.ttvd-content-wrap .ttvd-step-card::after {
  content: "";
  position: absolute;
  top: -64px;
  right: -64px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.2), rgba(254, 44, 85, 0.14));
}

.ttvd-content-wrap .ttvd-step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 244, 238, 0.25);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

.ttvd-content-wrap .ttvd-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: #111827;
  color: #ffffff;
  font-weight: 850;
  line-height: 1;
  box-shadow: 10px 10px 0 rgba(37, 244, 238, 0.22);
}

.ttvd-content-wrap .ttvd-step-content {
  position: relative;
  z-index: 1;
}

.ttvd-content-wrap .ttvd-step-content h3 {
  margin: 0;
  color: #111827;
  font-weight: 820;
  line-height: 1.25;
  letter-spacing: 0;
}

.ttvd-content-wrap .ttvd-step-content p {
  margin: 9px 0 0;
  color: #5f6b7a;
  line-height: 1.7;
}

.ttvd-content-wrap .ttvd-use-card {
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(37, 244, 238, 0.44), rgba(254, 44, 85, 0.3)) border-box;
  border-color: transparent;
}

.ttvd-content-wrap .ttvd-dot {
  display: inline-flex;
  width: 13px;
  height: 13px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #fe2c55;
  box-shadow: 13px 0 0 #25f4ee, 26px 0 0 #111827;
}

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

.ttvd-content-wrap .ttvd-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(37, 244, 238, 0.14);
  color: #0f766e;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

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

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

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

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

  .ttvd-content-wrap .ttvd-section-head h2 {
    font-size: 27px;
  }

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

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

  .ttvd-content-wrap .ttvd-card {
    padding: 24px;
    border-radius: 19px;
  }

  .ttvd-content-wrap .ttvd-card h3 {
    font-size: 18px;
  }

  .ttvd-content-wrap .ttvd-card p {
    font-size: 14.5px;
  }

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

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

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

  .ttvd-content-wrap .ttvd-step-content h3 {
    font-size: 18px;
  }

  .ttvd-content-wrap .ttvd-step-content p {
    font-size: 14.5px;
  }
}

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

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

  .ttvd-content-wrap .ttvd-section-head h2 {
    font-size: 30px;
  }

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

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

  .ttvd-content-wrap .ttvd-card {
    padding: 26px;
    border-radius: 20px;
  }

  .ttvd-content-wrap .ttvd-card h3 {
    font-size: 19px;
  }

  .ttvd-content-wrap .ttvd-card p {
    font-size: 15px;
  }

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

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

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

  .ttvd-content-wrap .ttvd-step-content h3 {
    font-size: 19px;
  }

  .ttvd-content-wrap .ttvd-step-content p {
    font-size: 15px;
  }
}

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

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

  .ttvd-content-wrap .ttvd-section-head h2 {
    font-size: 34px;
  }

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

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

  .ttvd-content-wrap .ttvd-card {
    padding: 28px;
    border-radius: 22px;
  }

  .ttvd-content-wrap .ttvd-card h3 {
    font-size: 20px;
  }

  .ttvd-content-wrap .ttvd-card p {
    font-size: 15.5px;
  }

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

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

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

  .ttvd-content-wrap .ttvd-step-content h3 {
    font-size: 20px;
  }

  .ttvd-content-wrap .ttvd-step-content p {
    font-size: 15.5px;
  }
}

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

  .ttvd-content-wrap .ttvd-container {
    padding: 0 28px;
  }

  .ttvd-content-wrap .ttvd-section-head h2 {
    font-size: 42px;
  }

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

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

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

  .ttvd-content-wrap .ttvd-card {
    padding: 30px;
  }

  .ttvd-content-wrap .ttvd-card h3 {
    font-size: 21px;
  }

  .ttvd-content-wrap .ttvd-card p {
    font-size: 15.8px;
  }

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

  .ttvd-content-wrap .ttvd-step-card {
    gap: 26px;
    padding: 30px;
  }

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

  .ttvd-content-wrap .ttvd-step-content h3 {
    font-size: 22px;
  }

  .ttvd-content-wrap .ttvd-step-content p {
    font-size: 16px;
  }
}

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

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

  .ttvd-content-wrap .ttvd-section-head h2 {
    font-size: 48px;
  }

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

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

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

  .ttvd-content-wrap .ttvd-card {
    padding: 32px;
  }

  .ttvd-content-wrap .ttvd-card h3 {
    font-size: 21px;
  }

  .ttvd-content-wrap .ttvd-card p {
    font-size: 15.8px;
  }

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

  .ttvd-content-wrap .ttvd-step-card {
    gap: 30px;
    padding: 34px 38px;
  }

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

  .ttvd-content-wrap .ttvd-step-content h3 {
    font-size: 23px;
  }

  .ttvd-content-wrap .ttvd-step-content p {
    font-size: 16px;
  }
}