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

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

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

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

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

.tdv-content-wrap .tdv-section-soft {
  background:
    radial-gradient(circle at top left, rgba(37, 244, 238, 0.12), transparent 32%),
    radial-gradient(circle at bottom right, rgba(254, 44, 85, 0.1), transparent 34%),
    #f7f9fc;
}

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

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

.tdv-content-wrap .tdv-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 12px;
  border: 1px solid rgba(23, 32, 51, 0.08);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.12), rgba(254, 44, 85, 0.1));
  color: #2f405f;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.tdv-content-wrap .tdv-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25f4ee, #fe2c55);
  box-shadow: 0 0 18px rgba(254, 44, 85, 0.35);
}

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

.tdv-content-wrap .tdv-section-head p {
  margin: 16px auto 0;
  max-width: 720px;
  color: #5b667a;
  line-height: 1.72;
}

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

.tdv-content-wrap .tdv-card,
.tdv-content-wrap .tdv-trust-card,
.tdv-content-wrap .tdv-step-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 29, 46, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.08);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.tdv-content-wrap .tdv-card,
.tdv-content-wrap .tdv-trust-card {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  border-radius: 22px;
}

.tdv-content-wrap .tdv-card::after,
.tdv-content-wrap .tdv-trust-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.12), transparent 34%, rgba(254, 44, 85, 0.1));
  opacity: 0;
  transition: opacity 260ms ease;
}

.tdv-content-wrap .tdv-card:hover,
.tdv-content-wrap .tdv-trust-card:hover,
.tdv-content-wrap .tdv-step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 244, 238, 0.32);
  box-shadow: 0 24px 64px rgba(17, 24, 39, 0.12);
}

.tdv-content-wrap .tdv-card:hover::after,
.tdv-content-wrap .tdv-trust-card:hover::after {
  opacity: 1;
}

.tdv-content-wrap h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #141d2e;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.tdv-content-wrap .tdv-card p,
.tdv-content-wrap .tdv-trust-card p,
.tdv-content-wrap .tdv-step-card p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: #626d80;
  line-height: 1.68;
}

.tdv-content-wrap .tdv-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, #25f4ee, #fe2c55);
  box-shadow: 0 14px 30px rgba(254, 44, 85, 0.18);
}

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

.tdv-content-wrap .tdv-icon-play::before {
  left: 18px;
  top: 14px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 13px solid #ffffff;
}

.tdv-content-wrap .tdv-icon-speed::before {
  width: 22px;
  height: 22px;
  left: 12px;
  top: 13px;
  border: 3px solid #ffffff;
  border-bottom-color: transparent;
  border-radius: 999px;
}

.tdv-content-wrap .tdv-icon-speed::after {
  width: 12px;
  height: 3px;
  left: 23px;
  top: 22px;
  border-radius: 999px;
  background: #ffffff;
  transform: rotate(-28deg);
}

.tdv-content-wrap .tdv-icon-frame::before {
  inset: 12px;
  border: 3px solid #ffffff;
  border-radius: 7px;
}

.tdv-content-wrap .tdv-icon-route::before {
  width: 24px;
  height: 14px;
  left: 11px;
  top: 16px;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  border-radius: 0 10px 0 0;
}

.tdv-content-wrap .tdv-icon-route::after {
  width: 7px;
  height: 7px;
  right: 12px;
  top: 13px;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  transform: rotate(45deg);
}

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

.tdv-content-wrap .tdv-icon-daily::before {
  width: 22px;
  height: 22px;
  left: 12px;
  top: 12px;
  border: 3px solid #ffffff;
  border-radius: 999px;
}

.tdv-content-wrap .tdv-icon-daily::after {
  width: 7px;
  height: 7px;
  left: 20px;
  top: 20px;
  border-right: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
}

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

.tdv-content-wrap .tdv-step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88)),
    linear-gradient(135deg, rgba(37, 244, 238, 0.12), rgba(254, 44, 85, 0.1));
}

.tdv-content-wrap .tdv-step-number {
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: #111827;
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.16);
}

.tdv-content-wrap .tdv-step-number::after {
  content: "";
  position: absolute;
}

.tdv-content-wrap .tdv-badge-dot {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(37, 244, 238, 0.14);
  border: 1px solid rgba(37, 244, 238, 0.36);
}

.tdv-content-wrap .tdv-badge-dot::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25f4ee, #fe2c55);
}

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

.tdv-content-wrap .tdv-trust-mark {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(37, 244, 238, 0.16), rgba(254, 44, 85, 0.14));
}

.tdv-content-wrap .tdv-trust-mark::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 10px;
  left: 13px;
  top: 15px;
  border-left: 3px solid #111827;
  border-bottom: 3px solid #111827;
  transform: rotate(-45deg);
}

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

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

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

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

  .tdv-content-wrap h2 {
    font-size: 27px;
  }

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

  .tdv-content-wrap .tdv-grid,
  .tdv-content-wrap .tdv-steps {
    gap: 16px;
    margin-top: 30px;
  }

  .tdv-content-wrap .tdv-grid-three {
    grid-template-columns: 1fr;
  }

  .tdv-content-wrap .tdv-card,
  .tdv-content-wrap .tdv-trust-card {
    padding: 22px;
  }

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

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

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

  .tdv-content-wrap .tdv-step-number {
    width: 54px;
    height: 54px;
    font-size: 16px;
  }
}

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

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

  .tdv-content-wrap h2 {
    font-size: 30px;
  }

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

  .tdv-content-wrap .tdv-grid,
  .tdv-content-wrap .tdv-steps {
    gap: 18px;
    margin-top: 34px;
  }

  .tdv-content-wrap .tdv-grid-three {
    grid-template-columns: 1fr;
  }

  .tdv-content-wrap .tdv-card,
  .tdv-content-wrap .tdv-trust-card {
    padding: 24px;
  }

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

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

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

  .tdv-content-wrap .tdv-step-number {
    width: 58px;
    height: 58px;
    font-size: 17px;
  }
}

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

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

  .tdv-content-wrap h2 {
    font-size: 34px;
  }

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

  .tdv-content-wrap .tdv-grid,
  .tdv-content-wrap .tdv-steps {
    gap: 20px;
    margin-top: 38px;
  }

  .tdv-content-wrap .tdv-grid-three {
    grid-template-columns: 1fr;
  }

  .tdv-content-wrap .tdv-card,
  .tdv-content-wrap .tdv-trust-card {
    padding: 26px;
  }

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

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

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

  .tdv-content-wrap .tdv-step-number {
    width: 62px;
    height: 62px;
    font-size: 18px;
  }
}

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

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

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

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

  .tdv-content-wrap .tdv-grid,
  .tdv-content-wrap .tdv-steps {
    gap: 22px;
    margin-top: 44px;
  }

  .tdv-content-wrap .tdv-grid-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .tdv-content-wrap .tdv-step-card {
    gap: 22px;
    padding: 30px;
  }

  .tdv-content-wrap .tdv-step-number {
    width: 66px;
    height: 66px;
    font-size: 19px;
  }
}

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

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

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

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

  .tdv-content-wrap .tdv-grid,
  .tdv-content-wrap .tdv-steps {
    gap: 24px;
    margin-top: 50px;
  }

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

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

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

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

  .tdv-content-wrap .tdv-step-card {
    gap: 26px;
    padding: 34px;
  }

  .tdv-content-wrap .tdv-step-number {
    width: 74px;
    height: 74px;
    font-size: 20px;
  }
}