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

.ttvv-editorial-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: #17202a;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

.ttvv-editorial-wrap,
.ttvv-editorial-wrap div,
.ttvv-editorial-wrap section,
.ttvv-editorial-wrap article {
  box-sizing: border-box;
}

.ttvv-editorial-wrap .ttvv-section {
  position: relative;
  overflow: hidden;
}

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

.ttvv-editorial-wrap .ttvv-section-soft {
  background: linear-gradient(180deg, #f8fafc 0%, #f4f7fb 100%);
}

.ttvv-editorial-wrap .ttvv-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

.ttvv-editorial-wrap .ttvv-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 13px;
  border: 1px solid rgba(0, 242, 234, 0.32);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 242, 234, 0.1), rgba(255, 0, 80, 0.08));
  color: #0f5f68;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.ttvv-editorial-wrap .ttvv-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00f2ea, #ff0050);
  box-shadow: 0 0 0 5px rgba(0, 242, 234, 0.12);
}

.ttvv-editorial-wrap h2,
.ttvv-editorial-wrap h3,
.ttvv-editorial-wrap p {
  margin-top: 0;
}

.ttvv-editorial-wrap h2 {
  margin-bottom: 14px;
  color: #111827;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}

.ttvv-editorial-wrap .ttvv-section-head p {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  color: #5b6472;
  line-height: 1.75;
}

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

.ttvv-editorial-wrap .ttvv-card,
.ttvv-editorial-wrap .ttvv-trust-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 48px rgba(15, 23, 42, 0.08);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.ttvv-editorial-wrap .ttvv-card::before,
.ttvv-editorial-wrap .ttvv-trust-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top right, rgba(0, 242, 234, 0.16), transparent 34%),
    radial-gradient(circle at bottom left, rgba(255, 0, 80, 0.1), transparent 32%);
  opacity: 0;
  transition: opacity 260ms ease;
}

.ttvv-editorial-wrap .ttvv-card:hover,
.ttvv-editorial-wrap .ttvv-trust-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 177, 170, 0.24);
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.13);
}

.ttvv-editorial-wrap .ttvv-card:hover::before,
.ttvv-editorial-wrap .ttvv-trust-card:hover::before {
  opacity: 1;
}

.ttvv-editorial-wrap .ttvv-card h3,
.ttvv-editorial-wrap .ttvv-trust-card h3,
.ttvv-editorial-wrap .ttvv-step-card h3 {
  position: relative;
  margin-bottom: 9px;
  color: #111827;
  font-weight: 850;
  line-height: 1.25;
  letter-spacing: 0;
}

.ttvv-editorial-wrap .ttvv-card p,
.ttvv-editorial-wrap .ttvv-trust-card p,
.ttvv-editorial-wrap .ttvv-step-card p {
  position: relative;
  margin-bottom: 0;
  color: #5d6675;
  line-height: 1.7;
}

.ttvv-editorial-wrap .ttvv-icon {
  position: relative;
  display: inline-flex;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 242, 234, 0.18), rgba(255, 0, 80, 0.14));
  border: 1px solid rgba(0, 177, 170, 0.18);
  transition: transform 260ms ease;
}

.ttvv-editorial-wrap .ttvv-card:hover .ttvv-icon {
  transform: translateY(-3px) rotate(-2deg);
}

.ttvv-editorial-wrap .ttvv-icon::before,
.ttvv-editorial-wrap .ttvv-icon::after {
  content: "";
  position: absolute;
}

.ttvv-editorial-wrap .ttvv-icon-play::before {
  left: 18px;
  top: 14px;
  border-left: 14px solid #ff0050;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}

.ttvv-editorial-wrap .ttvv-icon-speed::before {
  width: 22px;
  height: 22px;
  left: 12px;
  top: 13px;
  border: 3px solid #00a9a4;
  border-bottom-color: transparent;
  border-radius: 50%;
}

.ttvv-editorial-wrap .ttvv-icon-speed::after {
  width: 12px;
  height: 3px;
  left: 22px;
  top: 22px;
  background: #ff0050;
  border-radius: 999px;
  transform: rotate(-28deg);
  transform-origin: left center;
}

.ttvv-editorial-wrap .ttvv-icon-frame::before {
  inset: 12px;
  border: 3px solid #00a9a4;
  border-radius: 7px;
}

.ttvv-editorial-wrap .ttvv-icon-frame::after {
  width: 10px;
  height: 10px;
  right: 10px;
  bottom: 10px;
  border-radius: 50%;
  background: #ff0050;
}

.ttvv-editorial-wrap .ttvv-icon-path::before {
  width: 24px;
  height: 12px;
  left: 11px;
  top: 17px;
  border-top: 3px solid #00a9a4;
  border-right: 3px solid #00a9a4;
  border-radius: 0 10px 0 0;
}

.ttvv-editorial-wrap .ttvv-icon-path::after {
  width: 9px;
  height: 9px;
  right: 10px;
  top: 12px;
  border-top: 3px solid #ff0050;
  border-right: 3px solid #ff0050;
  transform: rotate(45deg);
}

.ttvv-editorial-wrap .ttvv-icon-mobile::before {
  width: 18px;
  height: 26px;
  left: 14px;
  top: 9px;
  border: 3px solid #00a9a4;
  border-radius: 7px;
}

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

.ttvv-editorial-wrap .ttvv-icon-daily::before {
  width: 22px;
  height: 22px;
  left: 12px;
  top: 12px;
  border-radius: 50%;
  background: conic-gradient(from 20deg, #00a9a4, #ff0050, #00a9a4);
}

.ttvv-editorial-wrap .ttvv-icon-daily::after {
  width: 14px;
  height: 14px;
  left: 16px;
  top: 16px;
  border-radius: 50%;
  background: #ffffff;
}

.ttvv-editorial-wrap .ttvv-steps {
  display: grid;
  gap: 18px;
}

.ttvv-editorial-wrap .ttvv-step-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.075);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.ttvv-editorial-wrap .ttvv-step-card::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(0, 242, 234, 0), rgba(0, 169, 164, 0.36), rgba(255, 0, 80, 0));
}

.ttvv-editorial-wrap .ttvv-step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 0, 80, 0.2);
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.12);
}

.ttvv-editorial-wrap .ttvv-step-number {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 18px;
  background: linear-gradient(135deg, #111827, #263244);
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.22);
}

.ttvv-editorial-wrap .ttvv-step-number::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 22px;
  border: 1px solid rgba(0, 242, 234, 0.38);
}

.ttvv-editorial-wrap .ttvv-step-content {
  position: relative;
}

.ttvv-editorial-wrap .ttvv-badge-dot {
  position: relative;
  display: inline-flex;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 242, 234, 0.18), rgba(255, 0, 80, 0.14));
}

.ttvv-editorial-wrap .ttvv-badge-dot::before {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00a9a4, #ff0050);
  box-shadow: 0 0 0 6px rgba(0, 242, 234, 0.1);
}

.ttvv-editorial-wrap .ttvv-trust-mark {
  position: relative;
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.04);
  border: 1px solid rgba(17, 24, 39, 0.08);
  color: #0f5f68;
  font-size: 12px;
  font-weight: 850;
}

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

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

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

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

  .ttvv-editorial-wrap .ttvv-section-head {
    margin-bottom: 28px;
  }

  .ttvv-editorial-wrap h2 {
    font-size: 26px;
  }

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

  .ttvv-editorial-wrap .ttvv-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ttvv-editorial-wrap .ttvv-card,
  .ttvv-editorial-wrap .ttvv-trust-card {
    padding: 22px;
  }

  .ttvv-editorial-wrap .ttvv-card h3,
  .ttvv-editorial-wrap .ttvv-trust-card h3,
  .ttvv-editorial-wrap .ttvv-step-card h3 {
    font-size: 18px;
  }

  .ttvv-editorial-wrap .ttvv-card p,
  .ttvv-editorial-wrap .ttvv-trust-card p,
  .ttvv-editorial-wrap .ttvv-step-card p {
    font-size: 14px;
  }

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

  .ttvv-editorial-wrap .ttvv-step-card::before {
    display: none;
  }

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

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

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

  .ttvv-editorial-wrap .ttvv-section-head {
    margin-bottom: 30px;
  }

  .ttvv-editorial-wrap h2 {
    font-size: 29px;
  }

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

  .ttvv-editorial-wrap .ttvv-grid {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .ttvv-editorial-wrap .ttvv-card,
  .ttvv-editorial-wrap .ttvv-trust-card {
    padding: 24px;
  }

  .ttvv-editorial-wrap .ttvv-card h3,
  .ttvv-editorial-wrap .ttvv-trust-card h3,
  .ttvv-editorial-wrap .ttvv-step-card h3 {
    font-size: 19px;
  }

  .ttvv-editorial-wrap .ttvv-card p,
  .ttvv-editorial-wrap .ttvv-trust-card p,
  .ttvv-editorial-wrap .ttvv-step-card p {
    font-size: 14.5px;
  }

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

  .ttvv-editorial-wrap .ttvv-step-card::before {
    display: none;
  }

  .ttvv-editorial-wrap .ttvv-step-number {
    width: 60px;
    height: 60px;
    font-size: 18px;
  }
}

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

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

  .ttvv-editorial-wrap .ttvv-section-head {
    margin-bottom: 34px;
  }

  .ttvv-editorial-wrap h2 {
    font-size: 33px;
  }

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

  .ttvv-editorial-wrap .ttvv-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ttvv-editorial-wrap .ttvv-card,
  .ttvv-editorial-wrap .ttvv-trust-card {
    padding: 26px;
  }

  .ttvv-editorial-wrap .ttvv-card h3,
  .ttvv-editorial-wrap .ttvv-trust-card h3,
  .ttvv-editorial-wrap .ttvv-step-card h3 {
    font-size: 20px;
  }

  .ttvv-editorial-wrap .ttvv-card p,
  .ttvv-editorial-wrap .ttvv-trust-card p,
  .ttvv-editorial-wrap .ttvv-step-card p {
    font-size: 15px;
  }

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

  .ttvv-editorial-wrap .ttvv-step-card::before {
    display: none;
  }

  .ttvv-editorial-wrap .ttvv-step-number {
    width: 62px;
    height: 62px;
    font-size: 19px;
  }
}

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

  .ttvv-editorial-wrap .ttvv-container {
    padding: 0 30px;
  }

  .ttvv-editorial-wrap .ttvv-section-head {
    margin-bottom: 42px;
  }

  .ttvv-editorial-wrap h2 {
    font-size: 40px;
  }

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

  .ttvv-editorial-wrap .ttvv-grid-six,
  .ttvv-editorial-wrap .ttvv-grid-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .ttvv-editorial-wrap .ttvv-card,
  .ttvv-editorial-wrap .ttvv-trust-card {
    padding: 28px;
  }

  .ttvv-editorial-wrap .ttvv-card h3,
  .ttvv-editorial-wrap .ttvv-trust-card h3,
  .ttvv-editorial-wrap .ttvv-step-card h3 {
    font-size: 20px;
  }

  .ttvv-editorial-wrap .ttvv-card p,
  .ttvv-editorial-wrap .ttvv-trust-card p,
  .ttvv-editorial-wrap .ttvv-step-card p {
    font-size: 15.5px;
  }

  .ttvv-editorial-wrap .ttvv-step-card {
    gap: 22px;
    padding: 28px;
  }

  .ttvv-editorial-wrap .ttvv-step-number {
    width: 66px;
    height: 66px;
    font-size: 20px;
  }
}

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

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

  .ttvv-editorial-wrap .ttvv-section-head {
    margin-bottom: 48px;
  }

  .ttvv-editorial-wrap h2 {
    font-size: 46px;
  }

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

  .ttvv-editorial-wrap .ttvv-grid-six,
  .ttvv-editorial-wrap .ttvv-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .ttvv-editorial-wrap .ttvv-card,
  .ttvv-editorial-wrap .ttvv-trust-card {
    padding: 30px;
  }

  .ttvv-editorial-wrap .ttvv-card h3,
  .ttvv-editorial-wrap .ttvv-trust-card h3,
  .ttvv-editorial-wrap .ttvv-step-card h3 {
    font-size: 21px;
  }

  .ttvv-editorial-wrap .ttvv-card p,
  .ttvv-editorial-wrap .ttvv-trust-card p,
  .ttvv-editorial-wrap .ttvv-step-card p {
    font-size: 15.5px;
  }

  .ttvv-editorial-wrap .ttvv-step-card {
    gap: 26px;
    padding: 30px 34px;
  }

  .ttvv-editorial-wrap .ttvv-step-number {
    width: 70px;
    height: 70px;
    font-size: 21px;
  }
}