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

.ttuv-content {
  width: 100%;
  overflow-x: hidden;
  color: #172033;
  font-family: inherit;
  line-height: 1.6;
  --ttuv-ink: #172033;
  --ttuv-muted: #647084;
  --ttuv-soft: #f7f9fc;
  --ttuv-line: rgba(23, 32, 51, 0.1);
  --ttuv-pink: #ff3d7f;
  --ttuv-cyan: #19d4ff;
  --ttuv-violet: #7c5cff;
  --ttuv-shadow: 0 18px 45px rgba(23, 32, 51, 0.09);
  --ttuv-shadow-hover: 0 24px 60px rgba(23, 32, 51, 0.14);
}

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

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

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

.ttuv-content .ttuv-section-soft {
  background:
    radial-gradient(circle at top left, rgba(25, 212, 255, 0.08), transparent 32%),
    radial-gradient(circle at bottom right, rgba(255, 61, 127, 0.08), transparent 34%),
    var(--ttuv-soft);
}

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

.ttuv-content .ttuv-heading {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.ttuv-content .ttuv-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 12px;
  padding: 7px 13px;
  border: 1px solid rgba(255, 61, 127, 0.18);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 61, 127, 0.1), rgba(25, 212, 255, 0.1));
  color: #405064;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.ttuv-content .ttuv-heading h2 {
  margin: 0;
  color: var(--ttuv-ink);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
}

.ttuv-content .ttuv-heading p {
  margin: 14px auto 0;
  color: var(--ttuv-muted);
  font-weight: 400;
  line-height: 1.75;
}

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

.ttuv-content .ttuv-card,
.ttuv-content .ttuv-trust-card,
.ttuv-content .ttuv-step-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--ttuv-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--ttuv-shadow);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.ttuv-content .ttuv-card::before,
.ttuv-content .ttuv-trust-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ttuv-pink), var(--ttuv-violet), var(--ttuv-cyan));
  opacity: 0.9;
}

.ttuv-content .ttuv-card:hover,
.ttuv-content .ttuv-trust-card:hover,
.ttuv-content .ttuv-step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 61, 127, 0.24);
  box-shadow: var(--ttuv-shadow-hover);
}

.ttuv-content .ttuv-card h3,
.ttuv-content .ttuv-trust-card h3,
.ttuv-content .ttuv-step-copy h3 {
  margin: 0;
  color: var(--ttuv-ink);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.ttuv-content .ttuv-card p,
.ttuv-content .ttuv-trust-card p,
.ttuv-content .ttuv-step-copy p {
  margin: 10px 0 0;
  color: var(--ttuv-muted);
  line-height: 1.7;
}

.ttuv-content .ttuv-icon {
  position: relative;
  display: inline-flex;
  width: 46px;
  height: 46px;
  margin: 0 0 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 61, 127, 0.14), rgba(25, 212, 255, 0.16));
  box-shadow: inset 0 0 0 1px rgba(23, 32, 51, 0.06);
}

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

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

.ttuv-content .ttuv-icon-view::before {
  width: 20px;
  height: 13px;
  left: 13px;
  top: 16px;
  border: 2px solid #ff3d7f;
  border-radius: 999px;
}

.ttuv-content .ttuv-icon-view::after {
  width: 6px;
  height: 6px;
  left: 20px;
  top: 20px;
  border-radius: 50%;
  background: #19d4ff;
}

.ttuv-content .ttuv-icon-speed::before {
  width: 22px;
  height: 22px;
  left: 12px;
  top: 12px;
  border: 2px solid #19d4ff;
  border-radius: 50%;
}

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

.ttuv-content .ttuv-icon-preview::before {
  width: 22px;
  height: 16px;
  left: 12px;
  top: 15px;
  border: 2px solid #7c5cff;
  border-radius: 6px;
}

.ttuv-content .ttuv-icon-preview::after {
  width: 10px;
  height: 2px;
  left: 18px;
  top: 23px;
  border-radius: 99px;
  background: #19d4ff;
}

.ttuv-content .ttuv-icon-steps::before {
  width: 5px;
  height: 5px;
  left: 14px;
  top: 14px;
  border-radius: 50%;
  background: #ff3d7f;
  box-shadow: 0 8px 0 #7c5cff, 0 16px 0 #19d4ff;
}

.ttuv-content .ttuv-icon-steps::after {
  width: 14px;
  height: 2px;
  left: 24px;
  top: 16px;
  border-radius: 99px;
  background: #9aa5b5;
  box-shadow: 0 8px 0 #9aa5b5, 0 16px 0 #9aa5b5;
}

.ttuv-content .ttuv-icon-mobile::before {
  width: 16px;
  height: 24px;
  left: 15px;
  top: 10px;
  border: 2px solid #19d4ff;
  border-radius: 7px;
}

.ttuv-content .ttuv-icon-mobile::after {
  width: 5px;
  height: 2px;
  left: 21px;
  top: 29px;
  border-radius: 99px;
  background: #ff3d7f;
}

.ttuv-content .ttuv-icon-daily::before {
  width: 20px;
  height: 20px;
  left: 13px;
  top: 13px;
  border-radius: 8px;
  border: 2px solid #ff3d7f;
}

.ttuv-content .ttuv-icon-daily::after {
  width: 8px;
  height: 8px;
  left: 24px;
  top: 11px;
  border-radius: 50%;
  background: #19d4ff;
}

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

.ttuv-content .ttuv-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(135deg, rgba(255, 61, 127, 0.12), rgba(25, 212, 255, 0.12));
}

.ttuv-content .ttuv-step-card::before {
  content: "";
  position: absolute;
  left: 32px;
  top: -40px;
  width: 92px;
  height: 92px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 61, 127, 0.12), rgba(25, 212, 255, 0.16));
  transform: rotate(18deg);
}

.ttuv-content .ttuv-step-number {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--ttuv-pink), var(--ttuv-violet) 55%, var(--ttuv-cyan));
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 14px 30px rgba(124, 92, 255, 0.24);
}

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

.ttuv-content .ttuv-use-card {
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(255, 61, 127, 0.3), rgba(25, 212, 255, 0.3)) border-box;
  border-color: transparent;
}

.ttuv-content .ttuv-dot {
  display: inline-flex;
  width: 13px;
  height: 13px;
  margin: 0 0 18px;
  border-radius: 50%;
  background: #ff3d7f;
  box-shadow: 15px 0 0 #7c5cff, 30px 0 0 #19d4ff;
}

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

.ttuv-content .ttuv-badge {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 18px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(25, 212, 255, 0.11);
  color: #24566b;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

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

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

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

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

  .ttuv-content .ttuv-heading {
    margin-bottom: 26px;
  }

  .ttuv-content .ttuv-heading h2 {
    font-size: 25px;
  }

  .ttuv-content .ttuv-heading p {
    font-size: 14px;
  }

  .ttuv-content .ttuv-grid,
  .ttuv-content .ttuv-grid-three,
  .ttuv-content .ttuv-grid-trust {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ttuv-content .ttuv-card,
  .ttuv-content .ttuv-trust-card {
    padding: 24px 20px;
  }

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

  .ttuv-content .ttuv-card p,
  .ttuv-content .ttuv-trust-card p,
  .ttuv-content .ttuv-step-copy p {
    font-size: 14px;
  }

  .ttuv-content .ttuv-steps {
    gap: 16px;
  }

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

  .ttuv-content .ttuv-step-number {
    width: 54px;
    height: 54px;
    font-size: 17px;
  }
}

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

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

  .ttuv-content .ttuv-heading {
    margin-bottom: 30px;
  }

  .ttuv-content .ttuv-heading h2 {
    font-size: 28px;
  }

  .ttuv-content .ttuv-heading p {
    font-size: 15px;
  }

  .ttuv-content .ttuv-grid,
  .ttuv-content .ttuv-grid-three,
  .ttuv-content .ttuv-grid-trust {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ttuv-content .ttuv-card,
  .ttuv-content .ttuv-trust-card {
    padding: 26px 22px;
  }

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

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

  .ttuv-content .ttuv-steps {
    gap: 18px;
  }

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

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

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

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

  .ttuv-content .ttuv-heading {
    margin-bottom: 32px;
  }

  .ttuv-content .ttuv-heading h2 {
    font-size: 31px;
  }

  .ttuv-content .ttuv-heading p {
    font-size: 16px;
  }

  .ttuv-content .ttuv-grid,
  .ttuv-content .ttuv-grid-three,
  .ttuv-content .ttuv-grid-trust {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

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

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

  .ttuv-content .ttuv-steps {
    gap: 20px;
  }

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

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

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

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

  .ttuv-content .ttuv-heading {
    margin-bottom: 40px;
  }

  .ttuv-content .ttuv-heading h2 {
    font-size: 38px;
  }

  .ttuv-content .ttuv-heading p {
    font-size: 17px;
  }

  .ttuv-content .ttuv-grid,
  .ttuv-content .ttuv-grid-three,
  .ttuv-content .ttuv-grid-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

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

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

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

  .ttuv-content .ttuv-steps {
    gap: 22px;
  }

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

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

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

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

  .ttuv-content .ttuv-heading {
    margin-bottom: 46px;
  }

  .ttuv-content .ttuv-heading h2 {
    font-size: 46px;
  }

  .ttuv-content .ttuv-heading p {
    font-size: 18px;
  }

  .ttuv-content .ttuv-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .ttuv-content .ttuv-grid-trust {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .ttuv-content .ttuv-card,
  .ttuv-content .ttuv-trust-card {
    min-height: 100%;
    padding: 32px 28px;
  }

  .ttuv-content .ttuv-card h3,
  .ttuv-content .ttuv-trust-card h3,
  .ttuv-content .ttuv-step-copy h3 {
    font-size: 22px;
  }

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

  .ttuv-content .ttuv-steps {
    gap: 24px;
  }

  .ttuv-content .ttuv-step-card {
    gap: 28px;
    padding: 34px 36px;
  }

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

@media (prefers-reduced-motion: reduce) {
  .ttuv-content .ttuv-card,
  .ttuv-content .ttuv-trust-card,
  .ttuv-content .ttuv-step-card,
  .ttuv-content .ttuv-reveal,
  .ttuv-content .ttuv-reveal.ttuv-visible {
    transition: none;
    transform: none;
  }

  .ttuv-content .ttuv-reveal {
    opacity: 1;
  }
}