@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: #111827;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
}

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

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

.ttvd-content-wrap .ttvd-section-soft {
  background: linear-gradient(180deg, #fbfbfd 0%, #f7f8fb 100%);
}

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

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

.ttvd-content-wrap .ttvd-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 7px 13px;
  border: 1px solid rgba(255, 0, 80, 0.18);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 0, 80, 0.08), rgba(0, 242, 234, 0.1));
  color: #b31348;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: 0;
}

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

.ttvd-content-wrap .ttvd-heading-block p {
  margin: 16px auto 0;
  color: #5b6472;
  line-height: 1.7;
  font-weight: 450;
}

.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(17, 24, 39, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.07);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.ttvd-content-wrap .ttvd-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, #ff0050, #00f2ea);
  opacity: 0.86;
}

.ttvd-content-wrap .ttvd-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 0, 80, 0.22);
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.11);
}

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

.ttvd-content-wrap .ttvd-card p {
  margin: 12px 0 0;
  color: #5e6878;
  line-height: 1.68;
  font-weight: 430;
}

.ttvd-content-wrap .ttvd-icon {
  position: relative;
  display: inline-flex;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(255, 0, 80, 0.11), rgba(0, 242, 234, 0.13));
  border: 1px solid rgba(17, 24, 39, 0.07);
}

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

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

.ttvd-content-wrap .ttvd-icon-play::before {
  width: 0;
  height: 0;
  top: 13px;
  left: 17px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #ff0050;
}

.ttvd-content-wrap .ttvd-icon-speed::before {
  width: 20px;
  height: 20px;
  top: 12px;
  left: 12px;
  border: 3px solid #00a9a5;
  border-bottom-color: transparent;
  border-radius: 50%;
}

.ttvd-content-wrap .ttvd-icon-speed::after {
  width: 12px;
  height: 3px;
  top: 21px;
  left: 21px;
  border-radius: 999px;
  background: #ff0050;
  transform-origin: left center;
  rotate: -28deg;
}

.ttvd-content-wrap .ttvd-icon-preview::before {
  width: 22px;
  height: 16px;
  top: 14px;
  left: 11px;
  border: 3px solid #ff0050;
  border-radius: 8px;
}

.ttvd-content-wrap .ttvd-icon-preview::after {
  width: 7px;
  height: 7px;
  top: 19px;
  left: 19px;
  border-radius: 50%;
  background: #00a9a5;
}

.ttvd-content-wrap .ttvd-icon-steps::before {
  width: 22px;
  height: 3px;
  top: 13px;
  left: 11px;
  border-radius: 999px;
  background: #ff0050;
  box-shadow: 0 8px 0 #00a9a5, 0 16px 0 #111827;
}

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

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

.ttvd-content-wrap .ttvd-icon-daily::before {
  width: 22px;
  height: 22px;
  top: 11px;
  left: 11px;
  border-radius: 9px;
  background: linear-gradient(135deg, #ff0050, #00f2ea);
}

.ttvd-content-wrap .ttvd-icon-daily::after {
  width: 12px;
  height: 3px;
  top: 21px;
  left: 16px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 -6px 0 rgba(255, 255, 255, 0.9), 0 6px 0 rgba(255, 255, 255, 0.9);
}

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

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

.ttvd-content-wrap .ttvd-step-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(0, 242, 234, 0.16), transparent 62%);
  pointer-events: none;
}

.ttvd-content-wrap .ttvd-step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 169, 165, 0.22);
  box-shadow: 0 24px 58px rgba(17, 24, 39, 0.1);
}

.ttvd-content-wrap .ttvd-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 850;
  letter-spacing: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, #ff0050 0%, #111827 54%, #00a9a5 100%);
  box-shadow: 0 15px 28px rgba(255, 0, 80, 0.18);
}

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

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

.ttvd-content-wrap .ttvd-step-content p {
  margin: 10px 0 0;
  color: #5e6878;
  line-height: 1.7;
  font-weight: 430;
}

.ttvd-content-wrap .ttvd-use-card::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 0, 80, 0.1), rgba(0, 242, 234, 0.14));
}

.ttvd-content-wrap .ttvd-trust-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.ttvd-content-wrap .ttvd-badge-dot {
  display: inline-flex;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffffff 0 18%, #00f2ea 19% 38%, #ff0050 39% 62%, #111827 63%);
  box-shadow: 0 12px 25px rgba(255, 0, 80, 0.15);
}

.ttvd-content-wrap .ttvd-note {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(255, 0, 80, 0.16);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 0, 80, 0.07), rgba(0, 242, 234, 0.09));
  text-align: center;
}

.ttvd-content-wrap .ttvd-note p {
  margin: 0;
  color: #3f4653;
  line-height: 1.7;
  font-weight: 520;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .ttvd-content-wrap .ttvd-note {
    margin-top: 24px;
    padding: 20px 18px;
  }
}

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

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

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

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

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

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

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

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

  .ttvd-content-wrap .ttvd-step-list {
    gap: 18px;
    margin-top: 34px;
  }

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

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

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

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

  .ttvd-content-wrap .ttvd-note {
    margin-top: 26px;
    padding: 22px 20px;
  }
}

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

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

  .ttvd-content-wrap h2 {
    font-size: 33px;
  }

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

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

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

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

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

  .ttvd-content-wrap .ttvd-step-list {
    gap: 20px;
    margin-top: 38px;
  }

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

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

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

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

  .ttvd-content-wrap .ttvd-note {
    margin-top: 30px;
    padding: 24px 22px;
  }
}

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

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

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

  .ttvd-content-wrap .ttvd-heading-block p {
    font-size: 17px;
  }

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

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

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

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

  .ttvd-content-wrap .ttvd-step-list {
    gap: 22px;
    margin-top: 44px;
  }

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

  .ttvd-content-wrap .ttvd-step-number {
    width: 76px;
    height: 64px;
    font-size: 22px;
  }

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

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

  .ttvd-content-wrap .ttvd-note {
    margin-top: 34px;
    padding: 26px 30px;
  }
}

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

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

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

  .ttvd-content-wrap .ttvd-heading-block p {
    font-size: 17.5px;
  }

  .ttvd-content-wrap .ttvd-grid-six,
  .ttvd-content-wrap .ttvd-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 50px;
  }

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

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

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

  .ttvd-content-wrap .ttvd-step-list {
    gap: 24px;
    margin-top: 50px;
  }

  .ttvd-content-wrap .ttvd-step-card {
    gap: 28px;
    padding: 32px 34px;
  }

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

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

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

  .ttvd-content-wrap .ttvd-note {
    margin-top: 38px;
    padding: 28px 34px;
  }
}