@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", Arial, sans-serif;
  color: #17202f;
  background: #ffffff;
}

.ttvv-content,
.ttvv-content section,
.ttvv-content div,
.ttvv-content article {
  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 12% 8%, rgba(37, 244, 238, 0.12), transparent 30%),
    radial-gradient(circle at 88% 16%, rgba(254, 44, 85, 0.10), transparent 28%),
    #f7f9fc;
}

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

.ttvv-content .ttvv-section-head {
  max-width: 760px;
  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: #d92655;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

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

.ttvv-content .ttvv-section-head p {
  margin: 14px auto 0;
  max-width: 660px;
  color: #5d687a;
  font-weight: 450;
  line-height: 1.7;
  letter-spacing: 0;
}

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

.ttvv-content .ttvv-feature-card,
.ttvv-content .ttvv-use-card,
.ttvv-content .ttvv-trust-card,
.ttvv-content .ttvv-step-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 32, 48, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 48px rgba(16, 24, 39, 0.08);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.ttvv-content .ttvv-feature-card::before,
.ttvv-content .ttvv-use-card::before,
.ttvv-content .ttvv-trust-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, #25f4ee, #fe2c55, #7c3aed);
  opacity: 0.9;
}

.ttvv-content .ttvv-feature-card:hover,
.ttvv-content .ttvv-use-card:hover,
.ttvv-content .ttvv-trust-card:hover,
.ttvv-content .ttvv-step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(254, 44, 85, 0.22);
  box-shadow: 0 24px 60px rgba(16, 24, 39, 0.12);
}

.ttvv-content .ttvv-feature-card h3,
.ttvv-content .ttvv-use-card h3,
.ttvv-content .ttvv-trust-card h3,
.ttvv-content .ttvv-step-card h3 {
  margin: 0;
  color: #131c2b;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.ttvv-content .ttvv-feature-card p,
.ttvv-content .ttvv-use-card p,
.ttvv-content .ttvv-trust-card p,
.ttvv-content .ttvv-step-card p {
  margin: 10px 0 0;
  color: #5e697a;
  line-height: 1.68;
  letter-spacing: 0;
}

.ttvv-content .ttvv-icon {
  position: relative;
  display: inline-flex;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.22), rgba(254, 44, 85, 0.18));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.75), 0 12px 28px rgba(254, 44, 85, 0.12);
}

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

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

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

.ttvv-content .ttvv-icon-bolt::before {
  left: 20px;
  top: 11px;
  width: 10px;
  height: 25px;
  background: linear-gradient(180deg, #25f4ee, #fe2c55);
  clip-path: polygon(54% 0, 100% 0, 68% 42%, 100% 42%, 35% 100%, 50% 56%, 13% 56%);
}

.ttvv-content .ttvv-icon-frame::before {
  left: 13px;
  top: 14px;
  width: 22px;
  height: 18px;
  border: 2px solid #fe2c55;
  border-radius: 7px;
}

.ttvv-content .ttvv-icon-frame::after {
  left: 18px;
  top: 19px;
  width: 12px;
  height: 8px;
  border-radius: 5px;
  background: #25f4ee;
}

.ttvv-content .ttvv-icon-steps::before {
  left: 12px;
  top: 13px;
  width: 24px;
  height: 4px;
  border-radius: 6px;
  background: #fe2c55;
  box-shadow: 0 9px 0 #25f4ee, 0 18px 0 #7c3aed;
}

.ttvv-content .ttvv-icon-mobile::before {
  left: 16px;
  top: 9px;
  width: 16px;
  height: 30px;
  border: 2px solid #fe2c55;
  border-radius: 8px;
}

.ttvv-content .ttvv-icon-mobile::after {
  left: 22px;
  bottom: 12px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #25f4ee;
}

.ttvv-content .ttvv-icon-daily::before {
  left: 12px;
  top: 13px;
  width: 24px;
  height: 24px;
  border: 2px solid #fe2c55;
  border-radius: 50%;
}

.ttvv-content .ttvv-icon-daily::after {
  left: 23px;
  top: 18px;
  width: 8px;
  height: 11px;
  border-left: 2px solid #25f4ee;
  border-bottom: 2px solid #25f4ee;
}

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

.ttvv-content .ttvv-step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.88)),
    linear-gradient(90deg, rgba(37, 244, 238, 0.20), rgba(254, 44, 85, 0.16));
}

.ttvv-content .ttvv-step-card::after {
  content: "";
  position: absolute;
  right: -36px;
  top: -36px;
  width: 118px;
  height: 118px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.18), rgba(254, 44, 85, 0.18));
  transform: rotate(18deg);
}

.ttvv-content .ttvv-step-number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #111827, #fe2c55 58%, #25f4ee);
  box-shadow: 0 14px 34px rgba(254, 44, 85, 0.20);
}

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

.ttvv-content .ttvv-dot {
  display: inline-flex;
  width: 13px;
  height: 13px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #fe2c55;
  box-shadow: 15px 0 0 #25f4ee, 30px 0 0 #7c3aed, 0 0 0 8px rgba(254, 44, 85, 0.08);
}

.ttvv-content .ttvv-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(16, 24, 39, 0.06);
  color: #d92655;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: 0;
}

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

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

@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: 26px;
  }

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

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

  .ttvv-content .ttvv-feature-card,
  .ttvv-content .ttvv-use-card,
  .ttvv-content .ttvv-trust-card {
    padding: 24px 20px;
  }

  .ttvv-content .ttvv-step-list {
    gap: 16px;
    margin-top: 28px;
  }

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

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

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

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

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

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

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

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

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

  .ttvv-content .ttvv-feature-card,
  .ttvv-content .ttvv-use-card,
  .ttvv-content .ttvv-trust-card {
    padding: 26px 22px;
  }

  .ttvv-content .ttvv-step-list {
    gap: 18px;
    margin-top: 32px;
  }

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

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

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

  .ttvv-content .ttvv-feature-card p,
  .ttvv-content .ttvv-use-card p,
  .ttvv-content .ttvv-trust-card p,
  .ttvv-content .ttvv-step-card p {
    font-size: 14.5px;
  }
}

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

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

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

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

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

  .ttvv-content .ttvv-feature-card,
  .ttvv-content .ttvv-use-card,
  .ttvv-content .ttvv-trust-card {
    padding: 28px 24px;
  }

  .ttvv-content .ttvv-step-list {
    gap: 20px;
    margin-top: 36px;
  }

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

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

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

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

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

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

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

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

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

  .ttvv-content .ttvv-feature-card,
  .ttvv-content .ttvv-use-card,
  .ttvv-content .ttvv-trust-card {
    padding: 30px 26px;
  }

  .ttvv-content .ttvv-step-list {
    gap: 22px;
    margin-top: 42px;
  }

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

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

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

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

@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-card-grid {
    gap: 24px;
    margin-top: 48px;
  }

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

  .ttvv-content .ttvv-feature-card,
  .ttvv-content .ttvv-use-card,
  .ttvv-content .ttvv-trust-card {
    min-height: 252px;
    padding: 32px 28px;
  }

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

  .ttvv-content .ttvv-step-card {
    gap: 26px;
    min-height: 142px;
    padding: 32px;
  }

  .ttvv-content .ttvv-step-number {
    width: 72px;
    height: 72px;
    font-size: 22px;
  }

  .ttvv-content .ttvv-feature-card h3,
  .ttvv-content .ttvv-use-card h3,
  .ttvv-content .ttvv-trust-card h3,
  .ttvv-content .ttvv-step-card h3 {
    font-size: 23px;
  }

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