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

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

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

.ttsv-content .ttsv-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

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

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

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

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

.ttsv-content .ttsv-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  margin: 0 0 14px;
  padding: 5px 13px;
  border: 1px solid rgba(254, 44, 85, 0.18);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.12), rgba(254, 44, 85, 0.1));
  color: #b3133a;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0;
}

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

.ttsv-content .ttsv-section-head p {
  margin: 16px auto 0;
  max-width: 690px;
  color: #5b6475;
  line-height: 1.75;
}

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

.ttsv-content .ttsv-card,
.ttsv-content .ttsv-trust-card {
  position: relative;
  min-width: 0;
  height: 100%;
  border: 1px solid rgba(23, 32, 51, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.07);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.ttsv-content .ttsv-card::before,
.ttsv-content .ttsv-trust-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.48), rgba(254, 44, 85, 0.42), rgba(255, 255, 255, 0));
  opacity: 0;
  pointer-events: none;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: opacity 260ms ease;
}

.ttsv-content .ttsv-card:hover,
.ttsv-content .ttsv-trust-card:hover {
  transform: translateY(-6px);
  border-color: rgba(254, 44, 85, 0.2);
  box-shadow: 0 24px 56px rgba(17, 24, 39, 0.11);
}

.ttsv-content .ttsv-card:hover::before,
.ttsv-content .ttsv-trust-card:hover::before {
  opacity: 1;
}

.ttsv-content .ttsv-card h3,
.ttsv-content .ttsv-step-card h3,
.ttsv-content .ttsv-trust-card h3 {
  margin: 0;
  color: #141b2d;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.ttsv-content .ttsv-card p,
.ttsv-content .ttsv-step-card p,
.ttsv-content .ttsv-trust-card p {
  margin: 10px 0 0;
  color: #606a7d;
  line-height: 1.7;
}

.ttsv-content .ttsv-icon {
  position: relative;
  display: inline-flex;
  width: 46px;
  height: 46px;
  margin: 0 0 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #25f4ee, #fe2c55);
  box-shadow: 0 14px 28px rgba(254, 44, 85, 0.18);
  transition: transform 260ms ease;
}

.ttsv-content .ttsv-card:hover .ttsv-icon {
  transform: translateY(-2px) rotate(-3deg);
}

.ttsv-content .ttsv-icon::before,
.ttsv-content .ttsv-icon::after {
  content: "";
  position: absolute;
  display: block;
}

.ttsv-content .ttsv-icon-eye::before {
  width: 22px;
  height: 14px;
  left: 12px;
  top: 16px;
  border: 2px solid #ffffff;
  border-radius: 50%;
}

.ttsv-content .ttsv-icon-eye::after {
  width: 6px;
  height: 6px;
  left: 20px;
  top: 20px;
  border-radius: 50%;
  background: #ffffff;
}

.ttsv-content .ttsv-icon-speed::before {
  width: 22px;
  height: 22px;
  left: 12px;
  top: 12px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  border-bottom-color: transparent;
}

.ttsv-content .ttsv-icon-speed::after {
  width: 12px;
  height: 2px;
  left: 22px;
  top: 22px;
  border-radius: 99px;
  background: #ffffff;
  transform: rotate(-35deg);
  transform-origin: left center;
}

.ttsv-content .ttsv-icon-preview::before {
  width: 22px;
  height: 18px;
  left: 12px;
  top: 14px;
  border: 2px solid #ffffff;
  border-radius: 6px;
}

.ttsv-content .ttsv-icon-preview::after {
  width: 9px;
  height: 9px;
  left: 19px;
  top: 19px;
  background: #ffffff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.ttsv-content .ttsv-icon-steps::before {
  width: 18px;
  height: 18px;
  left: 14px;
  top: 14px;
  border: 2px solid #ffffff;
  border-radius: 7px;
}

.ttsv-content .ttsv-icon-steps::after {
  width: 18px;
  height: 2px;
  left: 14px;
  top: 22px;
  border-radius: 99px;
  background: #ffffff;
  box-shadow: 0 -6px 0 rgba(255, 255, 255, 0.72), 0 6px 0 rgba(255, 255, 255, 0.72);
}

.ttsv-content .ttsv-icon-mobile::before {
  width: 18px;
  height: 26px;
  left: 14px;
  top: 10px;
  border: 2px solid #ffffff;
  border-radius: 7px;
}

.ttsv-content .ttsv-icon-mobile::after {
  width: 5px;
  height: 2px;
  left: 21px;
  top: 31px;
  border-radius: 99px;
  background: #ffffff;
}

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

.ttsv-content .ttsv-icon-daily::after {
  width: 10px;
  height: 10px;
  left: 20px;
  top: 15px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}

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

.ttsv-content .ttsv-step-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-width: 0;
  border: 1px solid rgba(23, 32, 51, 0.09);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86)),
    linear-gradient(135deg, rgba(37, 244, 238, 0.22), rgba(254, 44, 85, 0.16));
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.08);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.ttsv-content .ttsv-step-card::after {
  content: "";
  position: absolute;
  left: 36px;
  top: 50%;
  width: 4px;
  height: calc(100% + 24px);
  background: linear-gradient(180deg, rgba(37, 244, 238, 0.45), rgba(254, 44, 85, 0.35));
  transform: translateY(16px);
  z-index: 0;
}

.ttsv-content .ttsv-step-card:last-child::after {
  display: none;
}

.ttsv-content .ttsv-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(17, 24, 39, 0.11);
}

.ttsv-content .ttsv-step-number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 20px;
  background: #111827;
  color: #ffffff;
  font-weight: 850;
  letter-spacing: 0;
  box-shadow: 0 16px 32px rgba(17, 24, 39, 0.18);
}

.ttsv-content .ttsv-step-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.ttsv-content .ttsv-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 0 16px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(37, 244, 238, 0.12);
  color: #0e827d;
  font-size: 12px;
  font-weight: 800;
}

.ttsv-content .ttsv-card-accent {
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(37, 244, 238, 0.36), rgba(254, 44, 85, 0.26)) border-box;
}

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

.ttsv-content .ttsv-trust-mark {
  display: inline-flex;
  width: 42px;
  height: 42px;
  margin: 0 0 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.18), rgba(254, 44, 85, 0.14));
  position: relative;
}

.ttsv-content .ttsv-trust-mark::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 11px;
  width: 11px;
  height: 17px;
  border-right: 3px solid #14a79f;
  border-bottom: 3px solid #14a79f;
  transform: rotate(42deg);
  border-radius: 2px;
}

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

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

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

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

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

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

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

  .ttsv-content .ttsv-card,
  .ttsv-content .ttsv-trust-card {
    padding: 22px;
    border-radius: 18px;
  }

  .ttsv-content .ttsv-card h3,
  .ttsv-content .ttsv-step-card h3,
  .ttsv-content .ttsv-trust-card h3 {
    font-size: 18px;
  }

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

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

  .ttsv-content .ttsv-step-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px;
  }

  .ttsv-content .ttsv-step-card::after {
    display: none;
  }

  .ttsv-content .ttsv-step-number {
    width: 54px;
    height: 54px;
    font-size: 15px;
  }
}

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

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

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

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

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

  .ttsv-content .ttsv-card,
  .ttsv-content .ttsv-trust-card {
    padding: 24px;
    border-radius: 20px;
  }

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

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

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

  .ttsv-content .ttsv-step-card {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 24px;
  }

  .ttsv-content .ttsv-step-card::after {
    display: none;
  }

  .ttsv-content .ttsv-step-number {
    width: 56px;
    height: 56px;
    font-size: 15px;
  }
}

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

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

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

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

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

  .ttsv-content .ttsv-card,
  .ttsv-content .ttsv-trust-card {
    padding: 26px;
    border-radius: 22px;
  }

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

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

  .ttsv-content .ttsv-steps {
    gap: 20px;
    margin-top: 38px;
  }

  .ttsv-content .ttsv-step-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 26px;
  }

  .ttsv-content .ttsv-step-card::after {
    display: none;
  }

  .ttsv-content .ttsv-step-number {
    width: 58px;
    height: 58px;
    font-size: 16px;
  }
}

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

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

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

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

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

  .ttsv-content .ttsv-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ttsv-content .ttsv-card,
  .ttsv-content .ttsv-trust-card {
    padding: 28px;
  }

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

  .ttsv-content .ttsv-card p,
  .ttsv-content .ttsv-step-card p,
  .ttsv-content .ttsv-trust-card p {
    font-size: 15.8px;
  }

  .ttsv-content .ttsv-steps {
    gap: 22px;
    margin-top: 44px;
  }

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

  .ttsv-content .ttsv-step-number {
    width: 64px;
    height: 64px;
    font-size: 17px;
  }
}

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

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

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

  .ttsv-content .ttsv-section-head p {
    font-size: 18px;
  }

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

  .ttsv-content .ttsv-grid {
    gap: 24px;
    margin-top: 50px;
  }

  .ttsv-content .ttsv-card,
  .ttsv-content .ttsv-trust-card {
    padding: 30px;
  }

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

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

  .ttsv-content .ttsv-steps {
    gap: 24px;
    margin-top: 50px;
  }

  .ttsv-content .ttsv-step-card {
    gap: 26px;
    padding: 32px;
  }

  .ttsv-content .ttsv-step-number {
    width: 72px;
    height: 72px;
    font-size: 18px;
  }
}